mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-29 22:14:49 +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>