1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2025-05-01 14:49:00 +08:00

Compare commits

..

No commits in common. "51f2d5d22ce9204c37048e00697a7c1d630a6e03" and "fdb6ad5f1d2ea1cdc0808f75d2d391d1f36f89e2" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@
import path from 'node:path'
import { globSync } from 'glob'
import dynamicIcons from '../src/assets/icons/dynamic-icons.js'
import dynamicIcons from '../src/assets/icons/dynamic-icons'
/**
* @usage 生成icons, 用于 unocss safelist以支持页面动态渲染自定义图标

View File

@ -156,7 +156,7 @@ async function handleQuery() {
}
function handleSearch(keepCurrentPage = false) {
if (keepCurrentPage || !props.remote) {
if (keepCurrentPage) {
handleQuery()
}
else {

View File

@ -9,7 +9,7 @@
import { defineConfig, presetAttributify, presetIcons, presetUno } from 'unocss'
import presetRemToPx from '@unocss/preset-rem-to-px'
import { FileSystemIconLoader } from '@iconify/utils/lib/loader/node-loaders'
import { getIcons } from './build/index.js'
import { getIcons } from './build'
const icons = getIcons()
export default defineConfig({