The problem of Vue+tsx using slot is not replaced

The problem of Vue+tsx using slot is not replaced

Preface

I am planning to write a UI component recently and I want to have a deeper understanding of vue 2.x and 3.x

When building the architecture, prepare to use tsx to write all components

But I encountered a problem using slot in tsx

Find the problem

First, I wrote a basic card component:

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>
    )
  }
}

When using this v-card in examples :

<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>

I found that after rendering, the browser does not replace slot tag:

No slot tag replacement

I searched Baidu and Google for a day but couldn't find an explanation. After reading the official documentation carefully, there was no similar hint. The documentation of the jsx compiler also didn't state it clearly, except for stating how to use named slot .

solve

The next day, I was still struggling with this and looked up how to write in UI component libraries of element-ui and ant-design-vue , but I couldn't find the corresponding way to use slot using jsx .

Unwilling to give up, I changed the search text and finally found a solution. I changed the code to:

...
  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>
    )
  }
...

Check out the browser rendering again:

insert image description here

Problem Solving

postscript

When using jsx / tsx , if the js syntax itself can be solved, or the method itself is registered on this , js is preferred to do it. For example, v-if / v-else can be replaced by雙目運算符. There is really no easy way to do this, so use vue 's directives, such as v-show .

This is the end of this article about the problem of Vue+tsx using slot not being replaced. For more relevant Vue+tsx slot not being replaced, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • About VUE's compilation scope and slot scope slot issues
  • Detailed analysis of the usage and application scenarios of slots in Vue
  • In-depth understanding of slot-scope in Vue (suitable for beginners)
  • Solve the problem of secondary encapsulation and slots rendering of ant design vue table a-table
  • Vue slot_Special features slot, slot-scope and directive v-slot description
  • Detailed explanation of the usage of scoped slots in Vue.js slots

<<:  Linux firewall status check method example

>>:  Detailed explanation of Linux less command examples

Recommend

Implementation of CSS3 3D cool cube transformation animation

I love coding, it makes me happy! Hello everyone,...

Set the input to read-only via disabled and readonly

There are two ways to achieve read-only input: dis...

Use nexus as a private library to proxy docker to upload and download images

1. Nexus configuration 1. Create a docker proxy U...

Solve the problem of blank gap at the bottom of Img picture

When working on a recent project, I found that th...

CentOS7.5 installation of MySQL8.0.19 tutorial detailed instructions

1. Introduction This article does not have screen...

Implement a simple data response system

Table of contents 1. Dep 2. Understand obverser 3...

Detailed explanation of the process of installing msf on Linux system

Or write down the installation process yourself! ...

How to install mysql database in deepin 2014 system

Deepin 2014 download and installation For downloa...

In-depth understanding of HTML form input monitoring

Today I saw a blog post about input events, and o...

JS Object constructor Object.freeze

Table of contents Overview Example 1) Freeze Obje...

JDBC Exploration SQLException Analysis

1. Overview of SQLException When an error occurs ...

MySQL 8.0.12 installation graphic tutorial

MySQL8.0.12 installation tutorial, share with eve...

MySQL Series 13 MySQL Replication

Table of contents 1. MySQL replication related co...

Solutions to MySql crash and service failure to start

I have been in contact with PHP for so long, but ...