西藏巴青项目

index.vue 504B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view :class="pageRootClass" class="tab-page pkg-entry">
  3. <view class="tp-card">
  4. <text class="text-title">{{ $t(navTitleKey) }}</text>
  5. <text class="text-body">{{ $t('homeGrid.placeholder') }}</text>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. import tabPage from '@/mixins/tabPage'
  11. export default {
  12. mixins: [tabPage],
  13. data() {
  14. return {
  15. navTitleKey: 'homeGrid.myStore'
  16. }
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. @import '@/styles/tab-page.scss';
  22. </style>