2023-03-06 17:57:39 +08:00

39 lines
500 B
JavaScript

// commpents/appraise_data/index.js
Component({
/**
* 组件的属性列表
*/
properties: {
name: {
type: String,
value: '默认姓名',
},
start: {
type: Number,
value: '5',
},
content: {
type: String,
value: '默认评价内筒',
},
date: {
type: String,
value: '2023-01-25 12:09',
},
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
}
})