2020-08-27 17:18:57 +08:00

23 lines
428 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
layout: templateLayout
---
```vue
<template>
<Wb-button @click='showModal3'>显示弹窗</Wb-button>
<modal ref="modal3"
title="我是标题"
sub-title="我是副标题"
canFullScreen>
我是内容我是内容
</modal>
</template>
<script>
export default {
methods: {
showModal3 () {
this.$refs.modal3.show()
},
}
}
</script>
```