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