perf(project): remove lib import

This commit is contained in:
chen.home 2023-06-15 23:44:39 +08:00
parent 86df69c037
commit f061fcd4ad
38 changed files with 3 additions and 48 deletions

View File

@ -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$/,

View File

@ -1,6 +1,5 @@
<script setup lang="ts">
import { useDialog, useLoadingBar, useMessage, useNotification } from 'naive-ui'
import { defineComponent, h } from 'vue'
// naivewindow, 便
function registerNaiveTools() {

View File

@ -1,5 +1,4 @@
<script setup lang="ts">
import { computed, ref } from 'vue'
import { icons } from './icons'
const currentIcon = ref('')

View File

@ -1,5 +1,4 @@
<script setup lang="ts">
import { ref } from 'vue'
const props = defineProps({
count: {
type: Number,

View File

@ -1,5 +1,4 @@
<script lang="ts" setup>
import { computed } from 'vue'
const props = defineProps({
prefix: {
type: String,

View File

@ -1,5 +1,4 @@
import type { RouteLocationRaw } from 'vue-router'
import { useRouter } from 'vue-router'
import { router as gobalRouter } from '@/router'
/**

View File

@ -1,5 +1,3 @@
import { ref } from 'vue'
/**
* boolean组合式函数
* @param initValue

View File

@ -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,

View File

@ -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'

View File

@ -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'

View File

@ -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()

View File

@ -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()

View File

@ -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'

View File

@ -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'

View File

@ -1,4 +1,3 @@
import { createApp } from 'vue'
import App from './App.vue'
import AppLoading from './components/common/appLoading.vue'
import { setupRouter } from './router'

View File

@ -1,4 +1,3 @@
import { createPinia } from 'pinia'
import piniaPluginPersist from 'pinia-plugin-persist'
import type { App } from 'vue'

View File

@ -1,5 +1,3 @@
import { defineStore } from 'pinia'
import { nextTick } from 'vue'
import type { GlobalTheme } from 'naive-ui'
import { darkTheme } from 'naive-ui'

View File

@ -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'

View File

@ -1,4 +1,4 @@
import { defineStore } from 'pinia'
import type { MenuOption } from 'naive-ui'
import { RouterLink } from 'vue-router'
import { h } from 'vue'

View File

@ -1,4 +1,3 @@
import { defineStore } from 'pinia'
import type { RouteLocationNormalized } from 'vue-router'
import { useAppRouter } from '@/hooks'

View File

@ -1,4 +1,3 @@
import { h } from 'vue'
import { Icon } from '@iconify/vue'
import { NIcon } from 'naive-ui'

View File

@ -1,5 +1,4 @@
<script setup lang="ts">
import { ref } from 'vue'
const currentRadio = ref(0)
const cardData = [

View File

@ -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',

View File

@ -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'

View File

@ -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'

View File

@ -1,6 +1,4 @@
<script setup lang="ts">
import { ref } from 'vue'
const emit = defineEmits(['update:modelValue'])
function toLogin() {
emit('update:modelValue', 'login')

View File

@ -1,6 +1,4 @@
<script setup lang="ts">
import { ref } from 'vue'
const emit = defineEmits(['update:modelValue'])
function toLogin() {
emit('update:modelValue', 'login')

View File

@ -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'

View File

@ -1,5 +1,4 @@
<script setup lang="ts">
import { ref } from 'vue'
const input = ref('')
const text = ref('')

View File

@ -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'

View File

@ -1,5 +1,4 @@
<script setup lang="ts">
import { ref } from 'vue'
import { useClipBoard } from '@/hooks'
const { copy } = useClipBoard()

View File

@ -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

View File

@ -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

View File

@ -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)

View File

@ -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)

View File

@ -1,5 +1,4 @@
<script setup lang="ts">
import { ref } from 'vue'
import {
fetachDelete,
fetachFormPost,

View File

@ -1,5 +1,4 @@
<script setup lang="ts">
import { ref } from 'vue'
import { useAuthStore } from '@/store'
const authStore = useAuthStore()