feat:首页输入框、文字卡片

This commit is contained in:
2025-05-30 20:49:35 +08:00
parent c00c45a9be
commit 419818eb24
22 changed files with 517 additions and 288 deletions
@@ -0,0 +1,27 @@
Component({
options: {
// multipleSlots: true, // 在组件定义时的选项中启用多slot支持
},
/**
* 组件的属性列表
*/
properties: {
extClass: {
type: String,
value: '',
},
},
/**
* 组件的初始数据
*/
data: {
displayStyle: '',
},
lifetimes: {
attached() {},
},
/**
* 组件的方法列表
*/
methods: {},
});