This commit is contained in:
孟帅
2024-03-07 20:08:56 +08:00
parent 6dd8cbadad
commit 0fbc1ad47c
246 changed files with 9441 additions and 2293 deletions

View File

@@ -0,0 +1,15 @@
<template>
<Iframe ref="iframeRef" style="zoom: 0.8" />
</template>
<script lang="ts" setup>
import { ref, onMounted } from 'vue';
import Iframe from '../../../../iframe/index.vue';
const iframeRef = ref();
onMounted(() => {
iframeRef.value?.open('https://www.naiveui.com/zh-CN/os-theme/components/button');
});
</script>
<style lang="less" scoped></style>