SubmitButton.vue
<template>
<button type="submit">
<slot>Submit</slot>
</button>
</template>
index.vue
<submit-button>Save</submit-button>
产品分类: uniapp/小程序/阿里
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: windows7
第三方开发者工具版本号: 1.15.7
基础库版本号: 1.24.3
项目创建方式: CLI
CLI版本号: 4.5.9
SubmitButton.vue
<template>
<button type="submit">
<slot>Submit</slot>
</button>
</template>
index.vue
<submit-button>Save</submit-button>
运行到支付宝小程序中
应该显示Save
仍然显示Submit
支付宝小程序里面,默认值插槽好像不可用,当使用默认值插槽后,传入任何东西都不会替换掉插槽的默认值。