This commit is contained in:
2023-07-01 18:15:43 +07:00
commit a25b0adb09
20 changed files with 930 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue({
script: {
defineModel: true
}
})
],
})