借助vue-tsx-support|借助vue-tsx-support + vue-property-decorator实现类和装饰器风格vue代码
Vue + TypeScript + tsx + CSS Module 主要的依赖包以及版本:
vue@2.6.12
vuex@3.0.1
vue-router@3.1.3
vue-class-component@7.2.6
vue-property-decorator@9.0.2
vue-tsx-support@3.0.2
yarn
、nodejs
12+ 、@vue/cli
4.xyarn global add @vue/cliyarn global add typescript
2. 使用脚手架创建vue项目
vue create cd
3. 安装核心依赖
在package.json的devDependencies添加:
{
// ...
"devDependencies": {
// ...
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.0.2",
"vue-tsx-support": "^3.0.2",
"typescript": "~3.5.3",
"@vue/cli-plugin-typescript": "^4.0.0"
}
// ...
}
4. 项目编译相关==重要==配置
4.1 项目根目录添加vue.config.js文件,配置:
module.exports = {
css: {
requireModuleExtension: true,
loaderOptions: {
// 全局的less变量
less: {
prependData: `@import "@/assets/style/var.less";
`
}
}
},
configureWebpack: {
resolve: {
extensions: [".js", ".vue", ".json", ".ts", ".tsx"] // 加入ts 和 tsx
},
},
devServer: {
port: 5212
}
};
4.2 项目根目录添加tsconfig.json
{
"compilerOptions": {
"typeRoots": [
"node_modules/@types"
],
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"jsxFactory": "VueTsxSupport",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env",
"jest"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"node_modules/vue-tsx-support/enable-check.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": []
}
4.3 项目根目录.eslintrc.js
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'eslint:recommended',
'@vue/typescript'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {
parser: '@typescript-eslint/parser'
},
overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)'
]
}
]
}
4.4 其他配置(可选) src目录添加
shims-tsx.d.ts
文件// 可以使用cssmodule
declare module '*.less' {
const content: any;
export default content;
}
src目录添加
shims-vue.d.ts
文件// 已经没有vue文件了所以这个也不太需要
declare module '*.vue' {
import Vue from 'vue'
export default Vue
}
【借助vue-tsx-support|借助vue-tsx-support + vue-property-decorator实现类和装饰器风格vue代码】cssmodule使用方法:
页面或组件目录下添加index.module.less,tsx文件里引入:
button.tsx:
import { Component } from 'vue-property-decorator'
import * as tsx from 'vue-tsx-support'
import cssModule from './index.module.less'export enum ButtonType {
default = 'default',
primary = 'primary'
}export interface IButtonProps {
type?: ButtonType;
}@Component
export default class Button extends tsx.Component {
@Prop() public type!: ButtonType;
protected render() {
return ({ this.type && type: {this.type}
})
}
}
模板项目仓库地址: https://gitee.com/heda_weiwen...
推荐阅读
- 借助android|借助android uiautomator+情迁工具箱自动朗读实现语音红包自动发送语音,自动领取
- e签宝(借助钉钉宜搭变革传统项目管理模式,交付效率显著提升)
- 借助云托管低成本部署企业微信应用
- 译文|借助|译文|借助 Pulsar Functions 迁移到无服务应用程序
- 教你Windows平台安装配置Hadoop2.5.2(不借助cygwin)
- 写不出来,可以借助这3个工具
- js|JavaScript不借助第三个变量交换a,b两个变量值
- ts 版 vue 之 vue-property-decorator
- 借助财务思维,用这三件事就能判断你的职业前景
- 数据结构|线性表的基本操作