27 lines
342 B
JavaScript
27 lines
342 B
JavaScript
// components/scanguidecss/scanguidecss.js
|
|
Component({
|
|
|
|
/**
|
|
* Component properties
|
|
*/
|
|
properties: {
|
|
hide_title: {
|
|
type: Boolean,
|
|
value: false
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Component initial data
|
|
*/
|
|
data: {
|
|
|
|
},
|
|
|
|
/**
|
|
* Component methods
|
|
*/
|
|
methods: {
|
|
|
|
}
|
|
}) |