123456789101112131415161718192021222324252627282930313233343536 |
- Component({
-
- externalClasses: ["custom-class"],
- options: {
- addGlobalClass: true,
- multipleSlots: true
- },
-
- properties: {
- title: {
- type: String,
- value: ""
- },
- hover: {
- type: Boolean,
- value: false
- }
- },
-
- data: {
- },
-
- methods: {
- }
- })
|