mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-11 18:42:54 +00:00
7 lines
258 B
TypeScript
7 lines
258 B
TypeScript
// TypeScript declaration so editor (TS language service used by Vetur) can understand .vue SFC imports
|
|
// This enables better IntelliSense and can help some cases of path resolution.
|
|
declare module '*.vue' {
|
|
import Vue from 'vue';
|
|
export default Vue;
|
|
}
|