在 TypeScript 型別的 Vue 2.6 專案中使用 Vuetify UI 框架 Memo's Blog 2020-10-10 Vue JavaScript, Programming, TypeScript, Vue, Vuetify 前言Vuetify 的型別宣告定義在 node_modules/vuetify/types 中,因此 Vuetify 可以直接被使用在 TypeScript 型別的 Vue 專案裡。 做法修改根目錄的 tsconfig.json 檔,將 vuetify 的型別宣告添加到 types 列表中。 1234567{ "compilerOptions": { "types": [ "vuetify" ] }} 參考資料 Vuetify - Questions TypeScript - tsconfig.json