mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-27 20:29:01 +08:00
15 lines
279 B
Markdown
15 lines
279 B
Markdown
```html
|
|
<template>
|
|
<Loading :show="show"></Loading>
|
|
<Wb-button @click="show=!show">隐藏/显示</Wb-button>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function () {
|
|
return {
|
|
show: true
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
``` |