官方网站:https://static.tdesign.tencent.com/

Uniapp集成中的坑:
1.采用HBuilderX 模式。
main.js中加入
import './uni_modules/tdesign-uniapp/components/common/style/theme/index.css';
2.Tdesign的双向数据绑定和element antdesign不同
有个
@update:value
<t-input :value="formData.positionName" borderless placeholder="请输入位置名称" data-field="name"
style="flex: 1;" @update:value="(e) => formData.positionName = e" />