mirror of https://github.com/certd/certd
28 lines
715 B
Vue
28 lines
715 B
Vue
<template>
|
||
<fs-crud ref="crudRef" v-bind="crudBinding" />
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
import { defineComponent, onMounted } from "vue";
|
||
import { useFs } from "@fast-crud/fast-crud";
|
||
import createCrudOptions from "./crud.js";
|
||
|
||
export default defineComponent({
|
||
name: "FormLinkage",
|
||
setup() {
|
||
const customValue: any = {}; //自定义变量,传给createCrudOptions的额外参数(可以任意命名,任意多个)
|
||
const { crudBinding, crudRef, crudExpose, context } = useFs({ createCrudOptions, context: customValue });
|
||
|
||
// 页面打开后获取列表数据
|
||
onMounted(() => {
|
||
crudExpose.doRefresh();
|
||
});
|
||
|
||
return {
|
||
crudBinding,
|
||
crudRef
|
||
};
|
||
}
|
||
});
|
||
</script>
|