12345678910111213141516171819202122232425 |
- <template>
- <view>
- <tabbar :current="2"></tabbar>
- </view>
- </template>
- <script>
- import * as API from '@/apis/pagejs/index.js'
-
- import Tabbar from '@/components/Tabbar.vue'
- export default {
- components: {
- Tabbar
- },
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- </style>
|