flying-monkey/pages/tabbar/pagehome/pagehome.vue

33 lines
404 B
Vue
Raw Normal View History

<template>
<view>
<!-- 底部tab -->
<foot-tab></foot-tab>
</view>
</template>
<script>
// 暂无更多组件
import pitera from '@/components/nothing/pitera.vue';
export default {
components:{
pitera,
},
data() {
return {
}
},
onLoad(options) {
// 获取当前页面url
this.$toolAll.tools.obtainUrl();
},
methods: {
}
}
</script>
<style>
</style>