mirror of
https://github.com/certd/certd.git
synced 2026-05-18 14:27:36 +08:00
40 lines
1.0 KiB
Vue
40 lines
1.0 KiB
Vue
|
|
<template>
|
||
|
|
<fs-page>
|
||
|
|
<fs-crud ref="crudRef" v-bind="crudBinding" />
|
||
|
|
</fs-page>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import { defineComponent, ref, onMounted } from "vue";
|
||
|
|
import createCrudOptions from "./crud";
|
||
|
|
import { useExpose, useCrud } from "@fast-crud/fast-crud";
|
||
|
|
export default defineComponent({
|
||
|
|
name: "FeatureFixed",
|
||
|
|
setup() {
|
||
|
|
// crud组件的ref
|
||
|
|
const crudRef = ref();
|
||
|
|
// crud 配置的ref
|
||
|
|
const crudBinding = ref();
|
||
|
|
// 暴露的方法
|
||
|
|
const { expose } = useExpose({ crudRef, crudBinding });
|
||
|
|
// 你的crud配置
|
||
|
|
const { crudOptions, selectedIds } = createCrudOptions({ expose });
|
||
|
|
// 初始化crud配置
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars,no-unused-vars
|
||
|
|
const { resetCrudOptions } = useCrud({ expose, crudOptions });
|
||
|
|
// 你可以调用此方法,重新初始化crud配置
|
||
|
|
// resetCrudOptions(options)
|
||
|
|
|
||
|
|
// 页面打开后获取列表数据
|
||
|
|
onMounted(() => {
|
||
|
|
expose.doRefresh();
|
||
|
|
});
|
||
|
|
|
||
|
|
return {
|
||
|
|
crudBinding,
|
||
|
|
crudRef
|
||
|
|
};
|
||
|
|
}
|
||
|
|
});
|
||
|
|
</script>
|