mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
move vue AddAddress inside Address component
This commit is contained in:
parent
5a47ebed42
commit
70a4c34865
@ -50,8 +50,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddAddress from '../_components/AddAddress.vue';
|
import AddAddress from './components/AddAddress.vue';
|
||||||
import ShowAddress from '../_components/ShowAddress.vue';
|
import ShowAddress from './components/ShowAddress.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'App',
|
name: 'App',
|
||||||
|
@ -87,8 +87,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Modal from './Modal';
|
import Modal from 'ChillMainAssets/vuejs/_components/Modal';
|
||||||
import { fetchCountries, fetchCities, fetchReferenceAddresses } from '../_api/AddAddress'
|
import { fetchCountries, fetchCities, fetchReferenceAddresses } from '../api'
|
||||||
|
|
||||||
import CountrySelection from './AddAddress/CountrySelection';
|
import CountrySelection from './AddAddress/CountrySelection';
|
||||||
import CitySelection from './AddAddress/CitySelection';
|
import CitySelection from './AddAddress/CitySelection';
|
||||||
import AddressSelection from './AddAddress/AddressSelection';
|
import AddressSelection from './AddAddress/AddressSelection';
|
@ -1,7 +1,7 @@
|
|||||||
import 'es6-promise/auto';
|
import 'es6-promise/auto';
|
||||||
import { createStore } from 'vuex';
|
import { createStore } from 'vuex';
|
||||||
|
|
||||||
import { patchAddress, postAddress, postPostalCode, postAddressToPerson, getAddress } from '../../_api/AddAddress'
|
import { patchAddress, postAddress, postPostalCode, postAddressToPerson, getAddress } from '../api'
|
||||||
|
|
||||||
const debug = process.env.NODE_ENV !== 'production';
|
const debug = process.env.NODE_ENV !== 'production';
|
||||||
|
|
||||||
|
@ -336,7 +336,7 @@ import ClassicEditor from 'ChillMainAssets/modules/ckeditor5/index.js';
|
|||||||
import AddResult from './_components/AddResult.vue';
|
import AddResult from './_components/AddResult.vue';
|
||||||
import Person from 'ChillPersonAssets/vuejs/_components/Person/Person.vue';
|
import Person from 'ChillPersonAssets/vuejs/_components/Person/Person.vue';
|
||||||
import AddPersons from 'ChillPersonAssets/vuejs/_components/AddPersons.vue';
|
import AddPersons from 'ChillPersonAssets/vuejs/_components/AddPersons.vue';
|
||||||
import ShowAddress from 'ChillMainAssets/vuejs/_components/ShowAddress.vue';
|
import ShowAddress from 'ChillMainAssets/vuejs/Address/components/ShowAddress.vue';
|
||||||
|
|
||||||
const i18n = {
|
const i18n = {
|
||||||
messages: {
|
messages: {
|
||||||
|
@ -56,8 +56,8 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
import AddAddress from 'ChillMainAssets/vuejs/_components/AddAddress.vue';
|
import AddAddress from 'ChillMainAssets/vuejs/Address/components/AddAddress.vue';
|
||||||
import ShowAddress from 'ChillMainAssets/vuejs/_components/ShowAddress.vue';
|
import ShowAddress from 'ChillMainAssets/vuejs/Address/components/ShowAddress.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'App',
|
name: 'App',
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import 'es6-promise/auto';
|
import 'es6-promise/auto';
|
||||||
import { createStore } from 'vuex';
|
import { createStore } from 'vuex';
|
||||||
|
|
||||||
import { postAddress, postPostalCode, patchAddress, getAddress } from 'ChillMainAssets/vuejs/_api/AddAddress';
|
import { postAddress, postPostalCode, patchAddress, getAddress } from 'ChillMainAssets/vuejs/Address/api';
|
||||||
import { postAddressToHousehold } from '../api';
|
import { postAddressToHousehold } from '../api';
|
||||||
|
|
||||||
const debug = process.env.NODE_ENV !== 'production';
|
const debug = process.env.NODE_ENV !== 'production';
|
||||||
|
@ -76,7 +76,7 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
import Person from 'ChillPersonAssets/vuejs/_components/Person/Person.vue';
|
import Person from 'ChillPersonAssets/vuejs/_components/Person/Person.vue';
|
||||||
import ShowAddress from 'ChillMainAssets/vuejs/_components/ShowAddress.vue';
|
import ShowAddress from 'ChillMainAssets/vuejs/Address/components/ShowAddress.vue';
|
||||||
|
|
||||||
const i18n = {
|
const i18n = {
|
||||||
"messages":
|
"messages":
|
||||||
|
Loading…
x
Reference in New Issue
Block a user