mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-26 19:46:47 +08:00
279 B
279 B
<template>
<Loading :show="show"></Loading>
<Wb-button @click="show=!show">隐藏/显示</Wb-button>
</template>
<script>
export default {
data: function () {
return {
show: true
}
},
}
</script>