17 lines
147 B
JavaScript
17 lines
147 B
JavaScript
// components/empty/index.js
|
|
Component({
|
|
|
|
properties: {
|
|
description: {
|
|
type: String,
|
|
default: ''
|
|
}
|
|
},
|
|
|
|
data: {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}) |