add POC of a vuejs component (opens a modal) for address selection

This commit is contained in:
nobohan
2021-05-07 17:38:15 +02:00
parent c1b727b1c8
commit b934c2eeaf
7 changed files with 196 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<template>
<add-address></add-address>
</template>
<script>
import { mapState } from 'vuex'
import AddAddress from '../_components/AddAddress.vue';
export default {
name: 'App',
components: {
AddAddress
},
computed: mapState([
'address'
])
};
</script>