2021-03-30 14:40:32 +08:00

20 lines
263 B
Vue

<template>
<iframe src="./button.html" frameborder="0" class="iframe"></iframe>
</template>
<script lang='ts'>
export default {
setup() {
return {};
},
};
</script>
<style scoped>
.iframe {
width:98%;
height:90vh;
border-radius: 6px;
}
</style>