mirror of https://github.com/certd/certd
31 lines
788 B
Vue
31 lines
788 B
Vue
<template>
|
|
<fs-page class="page-cert">
|
|
<template #header>
|
|
<div class="title">顶部菜单配置</div>
|
|
</template>
|
|
<fs-crud ref="crudRef" v-bind="crudBinding"> </fs-crud>
|
|
</fs-page>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onActivated, onMounted } from "vue";
|
|
import { useFs } from "@fast-crud/fast-crud";
|
|
import createCrudOptions from "./crud";
|
|
import { useSettingStore } from "/@/store/settings";
|
|
|
|
defineOptions({
|
|
name: "SettingsHeaderMenus",
|
|
});
|
|
const { crudBinding, crudRef, crudExpose, context } = useFs({ createCrudOptions });
|
|
|
|
const settingStore = useSettingStore();
|
|
// 页面打开后获取列表数据
|
|
onMounted(() => {
|
|
crudExpose.doRefresh();
|
|
});
|
|
onActivated(async () => {
|
|
await crudExpose.doRefresh();
|
|
});
|
|
</script>
|
|
<style lang="less"></style>
|