mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-19 03:32:51 +00:00
add POC of a vuejs component (opens a modal) for address selection
This commit is contained in:
@@ -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>
|
Reference in New Issue
Block a user