mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
css警告修复,eslint严格模式开启
This commit is contained in:
parent
956f3c4880
commit
14772851cb
@ -12,7 +12,8 @@
|
|||||||
|
|
||||||
- 主题切换
|
- 主题切换
|
||||||
- 错误页
|
- 错误页
|
||||||
- 封装了一些小组件
|
- 动态切换主题、贴花的 `EChart` 图
|
||||||
|
- 带有拓展功能的表格
|
||||||
- 还有一些不值一提的小东西...
|
- 还有一些不值一提的小东西...
|
||||||
|
|
||||||
## 预览地址
|
## 预览地址
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"dayjs": "^1.11.7",
|
"dayjs": "^1.11.7",
|
||||||
"echarts": "^5.4.0",
|
"echarts": "^5.4.0",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"naive-ui": "^2.34.0",
|
"naive-ui": "^2.34.3",
|
||||||
"pinia": "^2.0.17",
|
"pinia": "^2.0.17",
|
||||||
"pinia-plugin-persistedstate": "^2.4.0",
|
"pinia-plugin-persistedstate": "^2.4.0",
|
||||||
"print-js": "^1.6.0",
|
"print-js": "^1.6.0",
|
||||||
|
@ -19,9 +19,8 @@ $activedColor: #2080f0;
|
|||||||
.ray-table__setting-option--draggable {
|
.ray-table__setting-option--draggable {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-row-gap: 10px;
|
grid-row-gap: 10px;
|
||||||
justify-items: center;
|
justify-self: center;
|
||||||
align-items: center;
|
align-self: center;
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
& .draggable-item {
|
& .draggable-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -24,7 +24,7 @@ import type { App } from 'vue'
|
|||||||
*
|
*
|
||||||
* @remak 未避免出现加载语言错误问题, 故而在 `main.ts` 注册时, 应优先加载 `i18n` 避免出现该问题
|
* @remak 未避免出现加载语言错误问题, 故而在 `main.ts` 注册时, 应优先加载 `i18n` 避免出现该问题
|
||||||
*/
|
*/
|
||||||
export const useDefaultLocal = () => {
|
export const getDefaultLocal = () => {
|
||||||
const locale: string =
|
const locale: string =
|
||||||
getCache('localeLanguage', 'localStorage') !== 'no'
|
getCache('localeLanguage', 'localStorage') !== 'no'
|
||||||
? getCache('localeLanguage', 'localStorage')
|
? getCache('localeLanguage', 'localStorage')
|
||||||
@ -34,7 +34,7 @@ export const useDefaultLocal = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const setupI18n = (app: App<Element>) => {
|
export const setupI18n = (app: App<Element>) => {
|
||||||
const locale = useDefaultLocal()
|
const locale = getDefaultLocal()
|
||||||
|
|
||||||
const i18n = createI18n({
|
const i18n = createI18n({
|
||||||
locale,
|
locale,
|
||||||
@ -63,7 +63,7 @@ export const useLanguageOptions = () => [
|
|||||||
*
|
*
|
||||||
* @remark 受打包体积影响. 如果有新的语言添加, 则需要手动引入对应语言包(https://www.naiveui.com/zh-CN/dark/docs/i18n)
|
* @remark 受打包体积影响. 如果有新的语言添加, 则需要手动引入对应语言包(https://www.naiveui.com/zh-CN/dark/docs/i18n)
|
||||||
*/
|
*/
|
||||||
export const useNaiveLocal = (key: string) => {
|
export const getNaiveLocal = (key: string) => {
|
||||||
switch (key) {
|
switch (key) {
|
||||||
case 'zh-CN':
|
case 'zh-CN':
|
||||||
return {
|
return {
|
||||||
@ -91,10 +91,10 @@ export const useNaiveLocal = (key: string) => {
|
|||||||
*
|
*
|
||||||
* @remark 获取默认语言包
|
* @remark 获取默认语言包
|
||||||
*/
|
*/
|
||||||
export const useDefaultNaiveLocal = () => {
|
export const getDefaultNaiveLocal = () => {
|
||||||
const local = useDefaultLocal()
|
const local = getDefaultLocal()
|
||||||
|
|
||||||
return useNaiveLocal(local)
|
return getNaiveLocal(local)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { useNaiveLocal, useDefaultNaiveLocal } from '@/language/index'
|
import { getNaiveLocal, getDefaultNaiveLocal } from '@/language/index'
|
||||||
|
|
||||||
export const useSetting = defineStore(
|
export const useSetting = defineStore(
|
||||||
'setting',
|
'setting',
|
||||||
@ -13,14 +13,14 @@ export const useSetting = defineStore(
|
|||||||
themeValue: false, // `true` 为黑夜主题, `false` 为白色主题
|
themeValue: false, // `true` 为黑夜主题, `false` 为白色主题
|
||||||
reloadRouteSwitch: true, // 刷新路由开关
|
reloadRouteSwitch: true, // 刷新路由开关
|
||||||
menuTagSwitch: true, // 多标签页开关
|
menuTagSwitch: true, // 多标签页开关
|
||||||
naiveLocal: useDefaultNaiveLocal(), // `naive ui` 语言包
|
naiveLocal: getDefaultNaiveLocal(), // `naive ui` 语言包
|
||||||
})
|
})
|
||||||
const { locale } = useI18n()
|
const { locale } = useI18n()
|
||||||
|
|
||||||
const updateLocale = (key: string) => {
|
const updateLocale = (key: string) => {
|
||||||
// TODO: 修改语言
|
// TODO: 修改语言
|
||||||
locale.value = key
|
locale.value = key
|
||||||
settingState.naiveLocal = useNaiveLocal(key)
|
settingState.naiveLocal = getNaiveLocal(key)
|
||||||
}
|
}
|
||||||
|
|
||||||
const changePrimaryColor = (value: string) => {
|
const changePrimaryColor = (value: string) => {
|
||||||
|
4
src/types/index.d.ts
vendored
4
src/types/index.d.ts
vendored
@ -13,7 +13,9 @@ import type {
|
|||||||
import type { ECharts } from 'echarts/core'
|
import type { ECharts } from 'echarts/core'
|
||||||
|
|
||||||
export global {
|
export global {
|
||||||
const __APP_INFO__: {
|
declare type Recordable<T = unknown> = Record<string, T>
|
||||||
|
|
||||||
|
declare const __APP_INFO__: {
|
||||||
pkg: {
|
pkg: {
|
||||||
name: string
|
name: string
|
||||||
version: string
|
version: string
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"@use-micro/*": ["src/micro/*"]
|
"@use-micro/*": ["src/micro/*"]
|
||||||
},
|
},
|
||||||
"suppressImplicitAnyIndexErrors": true,
|
"suppressImplicitAnyIndexErrors": true,
|
||||||
"types": ["@intlify/unplugin-vue-i18n/messages"]
|
"types": ["@intlify/unplugin-vue-i18n/messages", "naive-ui/volar"]
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*.ts",
|
"src/**/*.ts",
|
||||||
|
@ -63,7 +63,12 @@ export default defineConfig(async ({ mode }) => {
|
|||||||
defaultImport: 'component', // 默认以 `componetn` 形式导入 `svg`
|
defaultImport: 'component', // 默认以 `componetn` 形式导入 `svg`
|
||||||
}),
|
}),
|
||||||
useSVGIcon(),
|
useSVGIcon(),
|
||||||
viteEslintPlugin,
|
viteEslintPlugin({
|
||||||
|
failOnWarning: true, // 如果含有警告则构建失败
|
||||||
|
failOnError: true, // 如果有错误则构建失败
|
||||||
|
cache: true, // 缓存, 减少构建时间
|
||||||
|
exclude: ['**/node_modules/**', 'vite-env.d.ts'],
|
||||||
|
}),
|
||||||
vitePluginImp({
|
vitePluginImp({
|
||||||
libList: [
|
libList: [
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user