mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 17:07:19 +08:00
24 lines
516 B
Vue
24 lines
516 B
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
import { loadEnv } from "@build/index";
|
|
|
|
defineOptions({
|
|
name: "Button"
|
|
});
|
|
|
|
const { VITE_PUBLIC_PATH } = loadEnv();
|
|
|
|
const url = ref(`${VITE_PUBLIC_PATH}html/button.html`);
|
|
</script>
|
|
|
|
<template>
|
|
<el-card>
|
|
<template #header>
|
|
<div class="card-header">
|
|
<span class="font-medium">通过iframe引入按钮页面</span>
|
|
</div>
|
|
</template>
|
|
<iframe :src="url" frameborder="0" class="iframe w-full h-[60vh]" />
|
|
</el-card>
|
|
</template>
|