欢迎来到代码驿站!

vue

当前位置:首页 > 网页前端 > vue

Vue+tsx使用slot没有被替换的问题

时间:2022-01-18 10:21:00|栏目:vue|点击:

前言

最近自己准备写一个 UI 组件,想对 vue2.x3.x 可以更深层次的掌握

在架构时,准备全部使用 tsx 书写组件

但遇到了 tsx 中使用 slot 的问题

发现问题

先写了一个基础的 card 组件:

card.tsx:

import Component from 'vue-class-component'
import VanUIComponent from '@packs/common/VanUIComponent'
import { VNode } from 'vue'
import { Prop } from 'vue-property-decorator'
import { CardShadowEnum } from '@packs/config/card'

@Component
export default class Card extends VanUIComponent {
  @Prop({
    type: String,
    default: undefined
  }) public headerPadding !: string | undefined

  @Prop({
    type: String,
    default: ''
  }) public title !: string

  @Prop({
    type: String,
    default: CardShadowEnum.Hover
  }) public shadow !: CardShadowEnum

  public static componentName = 'v-card'

  public get wrapperClassName(): string {
    const list: string[] = ['v-card__wrapper']

    list.push(`shadow-${ this.shadow }`)

    return list.join(' ')
  }

  public render(): VNode {
    return (
      <div class={ this.wrapperClassName }>
        <div class="v-card__header" style={ { padding: this.headerPadding } }>
          {
            this.$slots.title ? <slot name="title" /> : <div>{ this.title }</div>
          }
        </div>
        <div class="v-card__body">
          <slot name="default" />
        </div>
        <div class="v-card__footer"></div>
      </div>
    )
  }
}

examples 中使用这个 v-card 的时候:

<template>
  <v-card>
    <template #title>1111</template>
  </v-card>
</template>

<script lang="ts">
import Vue from 'vue'
import Component from 'vue-class-component'

@Component
export default class Components extends Vue {

}
</script>

<style lang="scss" scoped>
.components__wrapper {
  padding: 20px;
}
</style>

我发现渲染后,浏览器不替换 slot 标签:

没有替换slot标签

我在百度、Google寻找了一天也没有解释,在官方文档中仔仔细细阅读后,也没有类似的提示,以及 jsx 编译器的文档中也没有写明,只是声明了如何使用命名 slot

解决

第二天,我一直在纠结这个,也查了 element-uiant-design-vueUI 组件库中如何书写,也没有找到对应的使用 jsx 使用 slot 的。

不甘放弃的我更换了搜索文字,于是终于找到解决方案,并将代码改为:

...
  public render(): VNode {
    return (
      <div class={ this.wrapperClassName }>
        <div class="v-card__header" style={ { padding: this.headerPadding } }>
          {
            this.$slots.title ?? <div>{ this.title }</div>
          }
        </div>
        <div class="v-card__body">
          <slot name="default" />
        </div>
        <div class="v-card__footer"></div>
      </div>
    )
  }
...

再查看浏览器渲染:

在这里插入图片描述

问题解决

后记

在使用 jsx / tsx 时,如果 js 语法本身可以解决的,或本身注册在 this 上的方法,优先使用 js 去做,例如 v-if / v-else 可以使用 双目运算符 替代。实在没有可用的简便方法,再使用 vue 的指令做,例如 v-show

上一篇:Vue-Quill-Editor富文本编辑器的使用教程

栏    目:vue

下一篇:vue-router的两种模式的区别

本文标题:Vue+tsx使用slot没有被替换的问题

本文地址:http://www.codeinn.net/misctech/190541.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有