File tree Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 1
1
import type { DevToolsHook , RouterInfo } from './src/types'
2
2
3
- /* eslint-disable vars-on-top, no-var */
3
+ /* eslint-disable vars-on-top */
4
4
declare global {
5
5
var __VUE_DEVTOOLS_GLOBAL_HOOK__ : DevToolsHook
6
6
var __VUE_DEVTOOLS_NEXT_APP_RECORD_INFO__ : {
Original file line number Diff line number Diff line change 1
1
import type { VNode } from 'vue'
2
2
3
- type TabCategory =
4
- | 'pinned'
5
- | 'app'
6
- | 'modules'
7
- | 'advanced'
3
+ type TabCategory
4
+ = | 'pinned'
5
+ | 'app'
6
+ | 'modules'
7
+ | 'advanced'
8
8
9
9
export type ModuleView = ModuleIframeView | ModuleVNodeView | ModuleSFCView
10
10
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
6
6
import { defineConfig } from 'vite'
7
7
import inspect from 'vite-plugin-inspect'
8
8
import VueDevTools from 'vite-plugin-vue-devtools'
9
+
9
10
// https://vitejs.dev/config/
10
11
export default defineConfig ( {
11
12
css : {
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import vue from '@vitejs/plugin-vue'
2
2
import { defineConfig } from 'vite'
3
3
import inspect from 'vite-plugin-inspect'
4
4
import VueDevTools from 'vite-plugin-vue-devtools'
5
+
5
6
// https://vitejs.dev/config/
6
7
export default defineConfig ( {
7
8
plugins : [
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ import Notification from '../components/Notification.vue'
3
3
4
4
// @unocss -include
5
5
6
- export type VueNotificationPlacement =
7
- | 'top-left' | 'top-center' | 'top-right'
8
- | 'bottom-left' | 'bottom-center' | 'bottom-right'
6
+ export type VueNotificationPlacement
7
+ = | 'top-left' | 'top-center' | 'top-right'
8
+ | 'bottom-left' | 'bottom-center' | 'bottom-right'
9
9
10
10
export interface VueNotificationOptions {
11
11
message : string
You can’t perform that action at this time.
0 commit comments