23 lines
361 B
JavaScript
Raw Normal View History

2025-03-03 16:28:34 +08:00
import { ref, reactive } from 'vue';
export default function useLandHook() {
const landType = ref('0');
const landsType = reactive([
{
value: '0',
label: '农用地',
},
{
value: '1',
label: '住宅用地',
},
{
value: '2',
label: '园林',
},
]);
return {
landType,
landsType,
};
}