小编cly*_*don的帖子

如何将 slot 和 slot-scope 移动到 vue 3 v-slot 规则

当我使用VueJS 的Ant-design table时出现此错误

<template slot="name" slot-scope="name"> {{ name.first }} {{ name.last }} </template>
Run Code Online (Sandbox Code Playgroud)

我更改为 Vue 3 规则后仍然没有显示:

<template v-slot:name v-slot="name"> {{ name.first }} {{ name.last }} </template>
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

vue.js vuejs2 vuejs3 ant-design-vue

4
推荐指数
1
解决办法
1万
查看次数

标签 统计

ant-design-vue ×1

vue.js ×1

vuejs2 ×1

vuejs3 ×1