12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- Component({
- options:{
- multipleSlots: true
- },
-
- properties: {
- show:{
- type: Boolean,
- default: false
- },
- closeable:{
- type: Boolean,
- default: false
- },
- title:{
- type: String,
- default: '标题'
- },
- width:{
- type: String,
- default: '70%'
- },
- height:{
- type: String,
- default: '70vh'
- },
-
-
-
-
- },
-
- data: {
- },
-
- methods: {
- close(){
- this.triggerEvent('close')
- },
- enter(){
- this.triggerEvent('enter')
- }
- }
- })
|