You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
334 B
27 lines
334 B
|
2 years ago
|
<template>
|
||
|
|
<view>
|
||
|
|
<tabbar :current-page="3"></tabbar>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import tabbar from "../../components/tabbar/tabbar.vue"
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
tabbar
|
||
|
|
},
|
||
|
|
data() {},
|
||
|
|
onShareAppMessage() {},
|
||
|
|
onLoad() {
|
||
|
|
|
||
|
|
},
|
||
|
|
onReady() {},
|
||
|
|
onHide() {},
|
||
|
|
methods: {
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
</style>
|