Skip to content
This repository was archived by the owner on Jan 26, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added `VueObserveVisibility` and `VueLazyload` dependency

### Changed / Improved
- Rearranged components of MyAccount page in one folder(#632)

## [1.0.4] - 04.01.2020

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

<script>
import { SfTabs } from '@storefront-ui/vue';
import MUpdatePersonalData from 'theme/components/molecules/m-update-personal-data'
import MUpdatePassword from 'theme/components/molecules/m-update-password'
import MUpdatePersonalData from 'theme/components/myaccount/m-update-personal-data'
import MUpdatePassword from 'theme/components/myaccount/m-update-password'

export default {
name: 'OMyAccountProfile',
Expand Down
8 changes: 4 additions & 4 deletions pages/MyAccount.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
<script>
import MyAccount from '@vue-storefront/core/pages/MyAccount';

import OMyAccountProfile from 'theme/components/organisms/o-my-account-profile';
import OMyAccountShippingDetails from 'theme/components/organisms/o-my-account-shipping-details'
import OMyAccountOrdersHistory from 'theme/components/organisms/o-my-account-orders-history';
import OMyAccountPlaceholder from 'theme/components/organisms/o-my-account-placeholder';
import OMyAccountProfile from 'theme/components/myaccount/o-my-account-profile';
import OMyAccountShippingDetails from 'theme/components/myaccount/o-my-account-shipping-details'
import OMyAccountOrdersHistory from 'theme/components/myaccount/o-my-account-orders-history';
import OMyAccountPlaceholder from 'theme/components/myaccount/o-my-account-placeholder';
import { localizedRoute } from '@vue-storefront/core/lib/multistore';
import { SfBreadcrumbs, SfContentPages } from '@storefront-ui/vue';

Expand Down