mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-27 20:29:01 +08:00
23 lines
428 B
Markdown
23 lines
428 B
Markdown
---
|
||
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>
|
||
``` |