57 lines
735 B
TypeScript
57 lines
735 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,
|
|
},
|
|
fontWeight: {
|
|
type: String,
|
|
value: 'initial'
|
|
},
|
|
fontColor: {
|
|
type: String,
|
|
value: ''
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 组件的初始数据
|
|
*/
|
|
data: {
|
|
|
|
},
|
|
|
|
/**
|
|
* 组件的方法列表
|
|
*/
|
|
methods: {
|
|
|
|
}
|
|
})
|