usePage增加许多配置项,另外增加一些回调函数、插槽等等,修改逻辑增强配置灵活性
zk authored at 2023-11-21 17:42:23
409.00 B
NewLife.QuickVue
<template>
	<Page></Page>
</template>

<script setup lang="ts">
import usePage from '/@/hook/usePage';

usePage({
	columns: [
		{
			prop: 'enable',
			component: 'radioGroup',
			props: {
				options: [
					{ id: 1, name: '开' },
					{ id: 2, name: '关' },
				],
			},
		},
		{
			prop: 'upload',
			if: false,
		},
		{
			prop: 'checkbox',
			props: {
				label: '测试',
			},
		},
	],
});
</script>