mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:53:03 +08:00
perf(project): remove lib import
This commit is contained in:
parent
86df69c037
commit
f061fcd4ad
@ -10,7 +10,7 @@ import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' // https://github.c
|
|||||||
|
|
||||||
export default [
|
export default [
|
||||||
AutoImport({
|
AutoImport({
|
||||||
imports: ['vue', 'vue-router','@vueuse/core','pinia'],
|
imports: ['vue', 'vue-router','pinia'],
|
||||||
include: [
|
include: [
|
||||||
/\.[tj]sx?$/,
|
/\.[tj]sx?$/,
|
||||||
/\.vue$/,
|
/\.vue$/,
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useDialog, useLoadingBar, useMessage, useNotification } from 'naive-ui'
|
import { useDialog, useLoadingBar, useMessage, useNotification } from 'naive-ui'
|
||||||
import { defineComponent, h } from 'vue'
|
|
||||||
|
|
||||||
// 挂载naive组件的方法至window, 以便在路由钩子函数和请求函数里面调用
|
// 挂载naive组件的方法至window, 以便在路由钩子函数和请求函数里面调用
|
||||||
function registerNaiveTools() {
|
function registerNaiveTools() {
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, ref } from 'vue'
|
|
||||||
import { icons } from './icons'
|
import { icons } from './icons'
|
||||||
|
|
||||||
const currentIcon = ref('')
|
const currentIcon = ref('')
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
count: {
|
count: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { computed } from 'vue'
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
prefix: {
|
prefix: {
|
||||||
type: String,
|
type: String,
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import type { RouteLocationRaw } from 'vue-router'
|
import type { RouteLocationRaw } from 'vue-router'
|
||||||
import { useRouter } from 'vue-router'
|
|
||||||
import { router as gobalRouter } from '@/router'
|
import { router as gobalRouter } from '@/router'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
import { ref } from 'vue'
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* boolean组合式函数
|
* boolean组合式函数
|
||||||
* @param initValue 初始值
|
* @param initValue 初始值
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
import * as echarts from 'echarts/core'
|
import * as echarts from 'echarts/core'
|
||||||
import { nextTick, onUnmounted, ref, watch } from 'vue'
|
|
||||||
import type { Ref } from 'vue'
|
|
||||||
|
|
||||||
import { BarChart, LineChart, PieChart, RadarChart } from 'echarts/charts'
|
import { BarChart, LineChart, PieChart, RadarChart } from 'echarts/charts'
|
||||||
|
|
||||||
// 系列类型的定义后缀都为 SeriesOption
|
// 系列类型的定义后缀都为 SeriesOption
|
||||||
import type {
|
import type {
|
||||||
BarSeriesOption,
|
BarSeriesOption,
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed } from 'vue'
|
|
||||||
import { useRouter } from 'vue-router'
|
|
||||||
import { useRouteStore } from '@/store'
|
import { useRouteStore } from '@/store'
|
||||||
import { useAppRouter } from '@/hooks'
|
import { useAppRouter } from '@/hooks'
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, ref } from 'vue'
|
|
||||||
import HeaderButton from '../common/HeaderButton.vue'
|
import HeaderButton from '../common/HeaderButton.vue'
|
||||||
import NoticeList from '../common/NoticeList.vue'
|
import NoticeList from '../common/NoticeList.vue'
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
import HeaderButton from '../common/HeaderButton.vue'
|
import HeaderButton from '../common/HeaderButton.vue'
|
||||||
import { useAppStore } from '@/store'
|
import { useAppStore } from '@/store'
|
||||||
const appStore = useAppStore()
|
const appStore = useAppStore()
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
import HeaderButton from '../common/HeaderButton.vue'
|
import HeaderButton from '../common/HeaderButton.vue'
|
||||||
import { useAppStore } from '@/store'
|
import { useAppStore } from '@/store'
|
||||||
const appStore = useAppStore()
|
const appStore = useAppStore()
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useRouter } from 'vue-router'
|
|
||||||
import HeaderButton from '../common/HeaderButton.vue'
|
import HeaderButton from '../common/HeaderButton.vue'
|
||||||
import { renderIcon } from '@/utils/icon'
|
import { renderIcon } from '@/utils/icon'
|
||||||
import { useAuthStore } from '@/store'
|
import { useAuthStore } from '@/store'
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import type { RouteLocationNormalized } from 'vue-router'
|
import type { RouteLocationNormalized } from 'vue-router'
|
||||||
import { nextTick, ref } from 'vue'
|
|
||||||
import { useAppStore, useTabStore } from '@/store'
|
import { useAppStore, useTabStore } from '@/store'
|
||||||
import { useAppRouter } from '@/hooks'
|
import { useAppRouter } from '@/hooks'
|
||||||
import { renderIcon } from '@/utils'
|
import { renderIcon } from '@/utils'
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import { createApp } from 'vue'
|
|
||||||
import App from './App.vue'
|
import App from './App.vue'
|
||||||
import AppLoading from './components/common/appLoading.vue'
|
import AppLoading from './components/common/appLoading.vue'
|
||||||
import { setupRouter } from './router'
|
import { setupRouter } from './router'
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import { createPinia } from 'pinia'
|
|
||||||
import piniaPluginPersist from 'pinia-plugin-persist'
|
import piniaPluginPersist from 'pinia-plugin-persist'
|
||||||
import type { App } from 'vue'
|
import type { App } from 'vue'
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
import { defineStore } from 'pinia'
|
|
||||||
import { nextTick } from 'vue'
|
|
||||||
import type { GlobalTheme } from 'naive-ui'
|
import type { GlobalTheme } from 'naive-ui'
|
||||||
import { darkTheme } from 'naive-ui'
|
import { darkTheme } from 'naive-ui'
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
import { defineStore } from 'pinia'
|
|
||||||
import { unref } from 'vue'
|
|
||||||
import { useRouteStore } from './route'
|
import { useRouteStore } from './route'
|
||||||
import { fetchLogin, fetchUserInfo } from '@/service'
|
import { fetchLogin, fetchUserInfo } from '@/service'
|
||||||
import { router } from '@/router'
|
import { router } from '@/router'
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { defineStore } from 'pinia'
|
|
||||||
import type { MenuOption } from 'naive-ui'
|
import type { MenuOption } from 'naive-ui'
|
||||||
import { RouterLink } from 'vue-router'
|
import { RouterLink } from 'vue-router'
|
||||||
import { h } from 'vue'
|
import { h } from 'vue'
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import { defineStore } from 'pinia'
|
|
||||||
import type { RouteLocationNormalized } from 'vue-router'
|
import type { RouteLocationNormalized } from 'vue-router'
|
||||||
import { useAppRouter } from '@/hooks'
|
import { useAppRouter } from '@/hooks'
|
||||||
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import { h } from 'vue'
|
|
||||||
import { Icon } from '@iconify/vue'
|
import { Icon } from '@iconify/vue'
|
||||||
import { NIcon } from 'naive-ui'
|
import { NIcon } from 'naive-ui'
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
const currentRadio = ref(0)
|
const currentRadio = ref(0)
|
||||||
|
|
||||||
const cardData = [
|
const cardData = [
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, ref, watch } from 'vue'
|
|
||||||
|
|
||||||
type FormModel = Pick<CommonList.UserList, 'name' | 'age' | 'gender' | 'address' | 'email' | 'role' | 'disabled'>
|
type FormModel = Pick<CommonList.UserList, 'name' | 'age' | 'gender' | 'address' | 'email' | 'role' | 'disabled'>
|
||||||
const props = withDefaults(defineProps<Props>(), {
|
const props = withDefaults(defineProps<Props>(), {
|
||||||
type: 'add',
|
type: 'add',
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="tsx">
|
<script setup lang="tsx">
|
||||||
import { onMounted, ref } from 'vue'
|
|
||||||
import type { DataTableColumns, FormInst } from 'naive-ui'
|
import type { DataTableColumns, FormInst } from 'naive-ui'
|
||||||
import { NButton, NPopconfirm, NSpace, NSwitch, NTag } from 'naive-ui'
|
import { NButton, NPopconfirm, NSpace, NSwitch, NTag } from 'naive-ui'
|
||||||
import TableModal from './components/TableModal.vue'
|
import TableModal from './components/TableModal.vue'
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
import type { FormInst } from 'naive-ui'
|
import type { FormInst } from 'naive-ui'
|
||||||
import { local } from '@/utils'
|
import { local } from '@/utils'
|
||||||
import { useAuthStore } from '@/store'
|
import { useAuthStore } from '@/store'
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
|
|
||||||
const emit = defineEmits(['update:modelValue'])
|
const emit = defineEmits(['update:modelValue'])
|
||||||
function toLogin() {
|
function toLogin() {
|
||||||
emit('update:modelValue', 'login')
|
emit('update:modelValue', 'login')
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
|
|
||||||
const emit = defineEmits(['update:modelValue'])
|
const emit = defineEmits(['update:modelValue'])
|
||||||
function toLogin() {
|
function toLogin() {
|
||||||
emit('update:modelValue', 'login')
|
emit('update:modelValue', 'login')
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
import type { Ref } from 'vue'
|
|
||||||
import { Login, Register, ResetPwd } from './components'
|
import { Login, Register, ResetPwd } from './components'
|
||||||
|
|
||||||
type IformType = 'login' | 'register' | 'resetPwd'
|
type IformType = 'login' | 'register' | 'resetPwd'
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
const input = ref('')
|
const input = ref('')
|
||||||
const text = ref('')
|
const text = ref('')
|
||||||
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
import type { Ref } from 'vue'
|
|
||||||
import { graphic } from 'echarts'
|
import { graphic } from 'echarts'
|
||||||
import { type ECOption, useEcharts } from '@/hooks'
|
import { type ECOption, useEcharts } from '@/hooks'
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
import { useClipBoard } from '@/hooks'
|
import { useClipBoard } from '@/hooks'
|
||||||
|
|
||||||
const { copy } = useClipBoard()
|
const { copy } = useClipBoard()
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
import MdEditor from 'md-editor-v3'
|
import MdEditor from 'md-editor-v3'
|
||||||
import 'md-editor-v3/lib/style.css'
|
import 'md-editor-v3/lib/style.css'
|
||||||
// https://github.com/imzbf/md-editor-v3/blob/dev/README-CN.md
|
// https://github.com/imzbf/md-editor-v3/blob/dev/README-CN.md
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import '@wangeditor/editor/dist/css/style.css' // 引入 css
|
import '@wangeditor/editor/dist/css/style.css' // 引入 css
|
||||||
import { onBeforeUnmount, onMounted, ref, shallowRef } from 'vue'
|
|
||||||
import { Editor, Toolbar } from '@wangeditor/editor-for-vue'
|
import { Editor, Toolbar } from '@wangeditor/editor-for-vue'
|
||||||
|
|
||||||
// https://www.wangeditor.com/v5/getting-started.html
|
// https://www.wangeditor.com/v5/getting-started.html
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useScriptTag } from '@vueuse/core'
|
import { useScriptTag } from '@vueuse/core'
|
||||||
import { onMounted, ref } from 'vue'
|
|
||||||
import { GAODE_MAP_SDK_URL } from '@/config'
|
import { GAODE_MAP_SDK_URL } from '@/config'
|
||||||
|
|
||||||
const { load } = useScriptTag(GAODE_MAP_SDK_URL)
|
const { load } = useScriptTag(GAODE_MAP_SDK_URL)
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useScriptTag } from '@vueuse/core'
|
import { useScriptTag } from '@vueuse/core'
|
||||||
import { onMounted, ref } from 'vue'
|
|
||||||
import { BAIDU_MAP_SDK_URL } from '@/config'
|
import { BAIDU_MAP_SDK_URL } from '@/config'
|
||||||
|
|
||||||
const { load } = useScriptTag(BAIDU_MAP_SDK_URL)
|
const { load } = useScriptTag(BAIDU_MAP_SDK_URL)
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
import {
|
import {
|
||||||
fetachDelete,
|
fetachDelete,
|
||||||
fetachFormPost,
|
fetachFormPost,
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
|
||||||
import { useAuthStore } from '@/store'
|
import { useAuthStore } from '@/store'
|
||||||
|
|
||||||
const authStore = useAuthStore()
|
const authStore = useAuthStore()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user