mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-08 01:17:23 +08:00
20 lines
263 B
Vue
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>
|