| 1234567891011121314151617181920212223242526 |
- <template>
- <view :class="pageRootClass" class="tab-page pkg-entry">
- <view class="tp-card">
- <text class="text-title">{{ $t(navTitleKey) }}</text>
- <text class="text-body">{{ $t('homeGrid.placeholder') }}</text>
- </view>
- </view>
- </template>
- <script>
- import tabPage from '@/mixins/tabPage'
- export default {
- mixins: [tabPage],
- data() {
- return {
- navTitleKey: 'homeGrid.myStore'
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import '@/styles/tab-page.scss';
- </style>
|