25 lines
346 B
Vue
25 lines
346 B
Vue
|
<template>
|
||
|
<view class="content">
|
||
|
<empty></empty>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import empty from '@/components/empty.vue'
|
||
|
import tRefresh from "@/components/t-refresh/t-refresh.vue"
|
||
|
export default {
|
||
|
components:{tRefresh,empty},
|
||
|
data(){
|
||
|
return{
|
||
|
|
||
|
}
|
||
|
},
|
||
|
onLoad(e) {
|
||
|
},
|
||
|
methods:{
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
</style>
|