init
This commit is contained in:
18
web/src/views/system/whiteList/index.vue
Normal file
18
web/src/views/system/whiteList/index.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<fs-page>
|
||||
<fs-crud ref="crudRef" v-bind="crudBinding"></fs-crud>
|
||||
</fs-page>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup name="whiteList">
|
||||
import {ref, onMounted} from 'vue';
|
||||
import {useFs} from '@fast-crud/fast-crud';
|
||||
import {createCrudOptions} from './crud';
|
||||
|
||||
const {crudBinding, crudRef, crudExpose} = useFs({createCrudOptions});
|
||||
|
||||
// 页面打开后获取列表数据
|
||||
onMounted(() => {
|
||||
crudExpose.doRefresh();
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user