2
0
mirror of https://github.com/tenrok/maska.git synced 2026-05-15 11:59:38 +03:00

chore: move docs demo app to root folder

This commit is contained in:
Alexander Shabunevich
2024-04-14 12:29:06 +03:00
parent 88d92b2753
commit bdcdecc301
4 changed files with 3 additions and 8 deletions
View File
+2 -2
View File
@@ -1,8 +1,8 @@
import { createApp } from 'vue'
import { vMaska } from '..'
import Demo from './Demo.vue'
import App from './App.vue'
createApp(Demo)
createApp(App)
.directive('maska', vMaska)
.mount('#demo-app')
-5
View File
@@ -1,5 +0,0 @@
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
+1 -1
View File
@@ -7,7 +7,7 @@ export default defineConfig({
outDir: 'docs/dist',
rollupOptions: {
input: {
demo: 'src/demo/demo.ts'
demo: 'demo/index.ts'
},
output: {
entryFileNames: '[name].js',