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.
26 lines
330 B
26 lines
330 B
<template>
|
|
<view>
|
|
知识库页面
|
|
|
|
<tabbar :page="page"></tabbar>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import tabbar from "@/components/tabbar/tabbar.vue";
|
|
export default {
|
|
data() {
|
|
return {
|
|
page: "",
|
|
};
|
|
},
|
|
onShow() {
|
|
this.page= "know"
|
|
},
|
|
components: {tabbar}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|
|
|