Skip to content

Commit 926e591

Browse files
committed
Arranged components of myaccount page in one folder(vuestorefront#632)
1 parent bedc696 commit 926e591

9 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111
- Added `VueObserveVisibility` and `VueLazyload` dependency
1212

13+
### Changed / Improved
14+
- Rearranged components of MyAccount page in one folder(#632)
15+
1316
## [1.0.4] - 04.01.2020
1417

1518
### Added

components/organisms/o-my-account-orders-history.vue renamed to components/myaccount/o-my-account-orders-history.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969

7070
<script>
7171
import UserOrder from '@vue-storefront/core/modules/order/components/UserOrdersHistory';
72-
import OMyAccountOrderDetails from 'theme/components/organisms/o-my-account-order-details'
72+
import OMyAccountOrderDetails from 'theme/components/myaccount/o-my-account-order-details'
7373
import { SfTabs, SfTable, SfButton } from '@storefront-ui/vue';
7474
import { ModalList } from 'theme/store/ui/modals'
7575

components/organisms/o-my-account-profile.vue renamed to components/myaccount/o-my-account-profile.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
<script>
1515
import { SfTabs } from '@storefront-ui/vue';
16-
import MUpdatePersonalData from 'theme/components/molecules/m-update-personal-data'
17-
import MUpdatePassword from 'theme/components/molecules/m-update-password'
16+
import MUpdatePersonalData from 'theme/components/myaccount/m-update-personal-data'
17+
import MUpdatePassword from 'theme/components/myaccount/m-update-password'
1818
1919
export default {
2020
name: 'OMyAccountProfile',

pages/MyAccount.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
<script>
4444
import MyAccount from '@vue-storefront/core/pages/MyAccount';
4545
46-
import OMyAccountProfile from 'theme/components/organisms/o-my-account-profile';
47-
import OMyAccountShippingDetails from 'theme/components/organisms/o-my-account-shipping-details'
48-
import OMyAccountOrdersHistory from 'theme/components/organisms/o-my-account-orders-history';
49-
import OMyAccountPlaceholder from 'theme/components/organisms/o-my-account-placeholder';
46+
import OMyAccountProfile from 'theme/components/myaccount/o-my-account-profile';
47+
import OMyAccountShippingDetails from 'theme/components/myaccount/o-my-account-shipping-details'
48+
import OMyAccountOrdersHistory from 'theme/components/myaccount/o-my-account-orders-history';
49+
import OMyAccountPlaceholder from 'theme/components/myaccount/o-my-account-placeholder';
5050
import { localizedRoute } from '@vue-storefront/core/lib/multistore';
5151
import { SfBreadcrumbs, SfContentPages } from '@storefront-ui/vue';
5252

0 commit comments

Comments
 (0)