uniapp的button属性type="primary"会报错
网上看的ts教程都比较浅没太搞明白ts
想做一个联合类型合并到第三方的type上应该怎么操作
<template>
<view class="address">
<view class="address-choose-box">
<button
type="primary"
size="mini">
请选择收货地址+
</button>
</view>
<image
class="address-border"
src="/static/cart_border@2x.png"></image>
</view>
</template>
<script setup lang="ts">
interface ButtonHTMLAttributes {
type: "button" | "submit" | "reset" | undefined | "primary";
}
</script>
还没有找到如何合并第三方type的方法
但是更改了tsconfig.json的配置解决了button的type="primary"报错的问题
在tsconfig.json里添加这个配置