自定义侧边栏按钮,点击跳转到大屏布局FullScreenLayout,数据大屏铺满屏幕 添加FullScreenLayout的路由 route.ts views\common\screen-vue3 数据大屏相关的文件 main.ts 为了使得数据大正常运行添加了一些配置 package.json添加了一些配置 postcss.config.js 安装postcss库的时候自带的 tailwind.config.js 安装tailwind的时候自带的 当前数据大屏使用的mock模拟数据请求
15 lines
301 B
JavaScript
15 lines
301 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/views/common/screen-vue3/**/*.{vue,js,ts}'],
|
|
theme: {
|
|
extend: {
|
|
// fontFamily: {
|
|
// sans: ['"Inter var"', ...defaultTheme.fontFamily.sans],
|
|
// },
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|
|
|