feat(projects): 新增文档页面

This commit is contained in:
Soybean
2021-10-19 10:47:16 +08:00
parent 2d9d5c0353
commit 7654b2adf3
7 changed files with 101 additions and 1 deletions

View 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>

View 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>

View 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>