模块设置
本模块提供了一系列设置项,这些设置项可以对项目的各个功能进行调整。
nuxt.config.ts
本模块在 nuxt.config.ts
中提供了一些设置项,以便选择性调整模块的默认行为,可用设置项如下:
🎉 编辑
nuxt.config.ts
时所有设置项均有代码提示和注释。export default defineNuxtConfig({
fastCrud: {
/**
* 使用的框架
*/
framework: "element",
},
});
app.config.ts
本模块在 app.config.ts
中提供了一些设置项,以便选择性调整模块的默认行为,可用设置项如下:
🎉 编辑
app.config.ts
时所有配置项均有代码提示和注释。export default defineAppConfig({
fastAdmin: {
/**
* FS配置
* @link http://fast-crud.docmirror.cn/api/install-options.html
* @description 动态修改无效
*/
fsSetupOptions: {},
/**
* UI配置
* @description 动态修改无效
*/
uiSetupOptions: {}
},
});
其他配置
参见 Fast Crud 配置Table of Contents