We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vue 是一个渐进式的 MVVM 框架,相比于 React、Angular 它更灵活轻量。
修改 Webpack 相关配置如下:
module: { rules: [ { test: /\.vue$/, use: ['vue-loader'], }, ] }
安装新引入的依赖:
# Vue 框架运行需要的库 npm i -S vue # 构建所需的依赖 npm i -D vue-loader css-loader vue-template-compiler
vue-template-compiler:把 vue-loader 提取出的 HTML 模版编译成对应的可执行的 JavaScript 代码,这和 React 中的 JSX 语法被编译成 JavaScript 代码类似。预先编译好 HTML 模版相对于在浏览器中再去编译 HTML 模版的好处在于性能更好。
从 Vue 2.5.0+ 版本开始,提供了对 TypeScript 的良好支持,使用 TypeScript 编写 Vue 是一个很好的选择
{ "compilerOptions": { // 构建出 ES5 版本的 JavaScript,与 Vue 的浏览器支持保持一致 "target": "es5", // 开启严格模式,这可以对 `this` 上的数据属性进行更严格的推断 "strict": true, // TypeScript 编译器输出的 JavaScript 采用 es2015 模块化,使 Tree Shaking 生效 "module": "es2015", "moduleResolution": "node" } }
"module": "es2015" 是为了 Tree Shaking 优化生效
由于 TypeScript 不认识 .vue 结尾的文件,为了让其支持 import App from './App.vue' 导入语句,还需要以下文件 vue-shims.d.ts 去定义 .vue 的类型:
// 告诉 TypeScript 编译器 .vue 文件其实是一个 Vue declare module "*.vue" { import Vue from "vue"; export default Vue; }
const path = require('path'); module.exports = { resolve: { // 增加对 TypeScript 的 .ts 和 .vue 文件的支持 extensions: ['.ts', '.js', '.vue', '.json'], }, module: { rules: [ // 加载 .ts 文件 { test: /\.ts$/, loader: 'ts-loader', exclude: /node_modules/, options: { // 让 tsc 把 vue 文件当成一个 TypeScript 模块去处理,以解决 moudle not found 的问题,tsc 本身不会处理 .vue 结尾的文件 appendTsSuffixTo: [/\.vue$/], } }, ] }, };
除此之外还需要安装新引入的依赖:
npm i -D ts-loader typescript
"typescript": "^3.8.3",
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Vue 是一个渐进式的 MVVM 框架,相比于 React、Angular 它更灵活轻量。
修改 Webpack 相关配置如下:
安装新引入的依赖:
vue-template-compiler:把 vue-loader 提取出的 HTML 模版编译成对应的可执行的 JavaScript 代码,这和 React 中的 JSX 语法被编译成 JavaScript 代码类似。预先编译好 HTML 模版相对于在浏览器中再去编译 HTML 模版的好处在于性能更好。
从 Vue 2.5.0+ 版本开始,提供了对 TypeScript 的良好支持,使用 TypeScript 编写 Vue 是一个很好的选择
"module": "es2015" 是为了 Tree Shaking 优化生效
由于 TypeScript 不认识 .vue 结尾的文件,为了让其支持 import App from './App.vue' 导入语句,还需要以下文件 vue-shims.d.ts 去定义 .vue 的类型:
除此之外还需要安装新引入的依赖:
npm i -D ts-loader typescript
"typescript": "^3.8.3",
The text was updated successfully, but these errors were encountered: