49 lines
603 B
TypeScript
49 lines
603 B
TypeScript
// components/btn/btn.ts
|
|
Component({
|
|
/**
|
|
* 组件的属性列表
|
|
*/
|
|
properties: {
|
|
type: {
|
|
type: String,
|
|
value: 'primary'
|
|
},
|
|
plain: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
width: {
|
|
type: String,
|
|
value: '184rpx'
|
|
},
|
|
height: {
|
|
type: String,
|
|
value: '60rpx'
|
|
},
|
|
fontSize: {
|
|
type: String,
|
|
value: '24rpx'
|
|
},
|
|
bgColor:{
|
|
type:String,
|
|
},
|
|
padding:{
|
|
type:String,
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 组件的初始数据
|
|
*/
|
|
data: {
|
|
|
|
},
|
|
|
|
/**
|
|
* 组件的方法列表
|
|
*/
|
|
methods: {
|
|
|
|
}
|
|
})
|