cxc-szcx-uniapp/pages/views/shengchan/ribaoshuju/rbsjLsxq.vue

21 lines
400 B
Vue

<template>
<view>
<cxc-szcx-dateRangeSelect v-model="dateRange"></cxc-szcx-dateRangeSelect>
</view>
</template>
<script setup>
import { ref, onMounted, computed, nextTick, watchEffect } from 'vue';
import { onLoad } from '@dcloudio/uni-app';
const aaa = ref({});
const dateRange = ref([]);
onLoad((options) => {
console.log(options);
aaa.value = options.data;
});
</script>
<style></style>