1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- Component({
- options:{
- multipleSlots: true
- },
-
- properties: {
- label:{
- type:String,
- default: null
- },
- content: {
- type:String,
- default:null
- },
- arrow:{
- type:String,
- default:null
- },
- arrowText:{
- type: String,
- default: ''
- },
- labelClass:{
- type: String,
- default: ''
- },
- arrowTextClass:{
- type: String,
- default: ''
- }
- },
-
- data: {
- },
-
- methods: {
- arrowtap(){
- this.triggerEvent("arrowtap")
- }
- }
- })
|