mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-06 16:26:04 +08:00
feat(projects): 新增文档页面
This commit is contained in:
10
src/views/document/naive/index.vue
Normal file
10
src/views/document/naive/index.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<div>
|
||||
<iframe class="w-full h-full" :src="src"></iframe>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const src = 'https://www.naiveui.com/zh-CN/os-theme/docs/introduction';
|
||||
</script>
|
||||
<style scoped></style>
|
||||
10
src/views/document/vite/index.vue
Normal file
10
src/views/document/vite/index.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<div>
|
||||
<iframe class="w-full h-full" :src="src"></iframe>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const src = 'https://cn.vitejs.dev/';
|
||||
</script>
|
||||
<style scoped></style>
|
||||
10
src/views/document/vue/index.vue
Normal file
10
src/views/document/vue/index.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<div>
|
||||
<iframe class="w-full h-full" :src="src"></iframe>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const src = 'https://v3.cn.vuejs.org/';
|
||||
</script>
|
||||
<style scoped></style>
|
||||
Reference in New Issue
Block a user