21 lines
400 B
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>
|