1234567891011121314151617181920212223 |
- <template>
- <view class="content">
- <custom-layout ref="layout" :showBottom="true" title="编辑" v-model="dataList"
- @layoutquery="onQueryList" @scroll="onScroll">
- <template #content></template>
- </custom-layout>
- </view>
- </template>
- <script setup>
- import {
- onLoad
- } from '@dcloudio/uni-app'
- import {
- ref,
- reactive
- } from 'vue'
- onLoad(() => {})
- </script>
- <style lang="scss" scoped>
- </style>
|