我承认了我是标题党,本篇文章是在vue项目里写tsx的一篇介绍。作为一个reacter,目前的业务天天使用vue2+ts让我十分的不舒服。我对于vue也不是很熟悉,想回到我的react时代。于是在查询官网之后发现在vue里面写jsx也挺有意思的,遂记录。
vue2+ts的项目配置这里就不展开了,网上一搜一大推。
index.vue是页面路由,存放各个组件和公用逻辑。components文件夹中存放我的tsx组件。
接下来就开始写tsx。
这次的项目结构是这样的:
在vue文件里这么使用
- // index.vue
tsx这么写
- import { CreateElement } from 'vue';
- import { Component, Vue, Prop } from 'vue-property-decorator';
- @Component({
- name: 'Common'
- })
- export default class Common extends Vue {
- @Prop(Object) opt!: any[]
- render(h: CreateElement) {
- return
- {
- this.opt.map((it) => {
- return {it}
- })
- }
- }
- }
在来看一下页面
这该死的react既视感,竟是如此的诱人
可能有心者注意到了 我还引用了一个 CreateElement
,这是干嘛的呢。这玩意叫 渲染函数
。不喜欢读vue那么大串的文档的兄弟看这里。简单解释:这个东西可以渲染一个vnode节点。 它比模板更接近编译器。
什么意思呢?意思就是模板语法也会编译成渲染函数。所以我们直接用渲染函数不就相当于节省了模板语法到渲染函数的过程。四舍五入项目性能又是一个大的提升!
简单介绍一下传参:
第一个参数
: {String | Object | Function} 一个 HTML 标签名、组件选项对象,或者 resolve 了上述任何一种的一个 async 函数。必填项。
第二个参数
: Object 一个与模板中 attribute 对应的数据对象。
第三个参数
: {String | Array} 文本节点或子级虚拟节点 (VNodes)。
渲染函数给vue带来了很多的灵活性,以前你想自定义在子组件里插入东西,得写一大堆的插槽。
。有了渲染函数我们可以这么玩。
- // 改造一下上面的index.vue的data
- private list = [
- { render: () => ["a", { style: { color: "red" } }, "我要去淘宝"] },
- { render: () => ["a", { style: { color: "green" } }, "我要去京东"] },
- { render: () => ["a", { style: { color: "pink" } }, "我要去百度"] },
- ];
tsx中这么写:
- {
- this.opt.map((it) => {
- return h(...it.render())
- })
- }
就可以渲染出花里胡哨的页面了
我们还可以这么玩:
- // tsx改造
- {
- this.opt.map((it) => {
- return it.render(h)
- })
- }
- 在index.vue页面我们就可以这么玩:
- // index.vue
- private list = [
- {
- render: (h: CreateElement) =>
- h("a", { style: { color: "red", marginRight: "5px" } }, "我要去淘宝"),
- },
- {
- render: (h: CreateElement) =>
- h("a", { style: { color: "green", marginRight: "5px" } }, "我要去京东"),
- },
- {
- render: (h: CreateElement) =>
- h("a", { style: { color: "pink", marginRight: "5px" } }, "我要去百度"),
- },
- ];
结果也是同样的花哨
我们同样可以渲染乱七八糟的标签!
- // index.vue改造
- {
- render: (h: CreateElement) =>
- h(
- "h1",
- {
- style: { color: "green", marginRight: "5px" },
- },
- "我要去京东"
- ),
- },
我们可以随心所欲的在渲染函数中定义事件:
- // index.vue
- private list = [
- {
- render: (h: CreateElement) =>
- h(
- "a",
- {
- style: { color: "red", marginRight: "5px" },
- on: {
- click: () => this.iWillGoWhere("TB"),
- },
- },
- "我要去淘宝"
- ),
- }]
- iWillGoWhere(type: string) {
- const goWhere: any = {
- TB: () => {
- alert("我要去淘宝!");
- },
- JD: () => {
- alert("我要去京东!");
- },
- BD: () => {
- alert("我要去百度!");
- },
- };
- goWhere[type]();
- }
这样就可以啦!
本次文章是对vue灵活性使用的入门。请各位vue大佬不要喷我~
本文标题:教练,怎么在vue项目里写react?
当前地址:http://www.shufengxianlan.com/qtweb/news5/342455.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联