25 lines
377 B
Vue
25 lines
377 B
Vue
<template>
|
|
<view>
|
|
<z-paging ref="paging" v-model="dataList" @query="queryList" default-page-size="5"
|
|
>
|
|
<view>首页</view>
|
|
<view slot='bottom'>
|
|
<tabbar-driver current="/pages/driver/home/home"></tabbar-driver>
|
|
</view>
|
|
</z-paging>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style> |