17 lines
187 B
JavaScript
17 lines
187 B
JavaScript
Component({
|
|
properties: {
|
|
text: {
|
|
type: String,
|
|
value: '暂无数据',
|
|
},
|
|
desc: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
},
|
|
lifetimes: {
|
|
attached() { },
|
|
},
|
|
methods: {}
|
|
})
|