feat:vue-devtools

This commit is contained in:
dichgrem
2025-12-08 23:09:46 +08:00
parent db48b95509
commit 485fe0b634
5 changed files with 1213 additions and 6 deletions

6
package-lock.json generated Normal file
View File

@@ -0,0 +1,6 @@
{
"name": "Vue",
"lockfileVersion": 3,
"requires": true,
"packages": {}
}

1202
todos/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -15,6 +15,7 @@
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.1",
"vite": "^7.2.2"
"vite": "^7.2.2",
"vite-plugin-vue-devtools": "^8.0.5"
}
}

View File

@@ -1,8 +1,8 @@
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import VueDevTools from "vite-plugin-vue-devtools";
// https://vite.dev/config/
export default defineConfig({
base: './',
plugins: [vue()],
base: "./",
plugins: [vue(), VueDevTools()],
});