We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
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] 实际工作中,你总结的vue最佳实践有哪些?
The text was updated successfully, but these errors were encountered:
存一份 defaultData 方便直接初始化,特别是带表单的弹窗也写在一起没有生命周期的时候。
Sorry, something went wrong.
vue ts写法 vue-tsx-support vue-property-decorator
vue-tsx-support
vue-property-decorator
.babelrc 是目前 babel-polyfill 的最佳实践 { "presets": [ [ "@babel/preset-env", { "corejs": "3", "modules": false, "useBuiltIns": "usage" } ] ], "plugins": [ [ "@babel/plugin-transform-runtime", { "corejs": false, "helpers": true, "regenerator": false, "useESModules": true } ] ] }
全部存在vue风格指南里面了
小机灵鬼
No branches or pull requests
[vue] 实际工作中,你总结的vue最佳实践有哪些?
The text was updated successfully, but these errors were encountered: