17 lines
168 B
Vue
17 lines
168 B
Vue
<template>
|
|
<view>
|
|
<text>tabbar</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {}
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|