feat(projects): 添加富文本和markdown编辑器插件及示例页面

This commit is contained in:
Soybean
2021-11-08 22:44:54 +08:00
parent ed90cb8f8e
commit 60c20647a0
14 changed files with 236 additions and 60 deletions

View File

@ -0,0 +1,18 @@
<template>
<p>
<span>github地址</span>
<a class="text-blue-500" :href="link" target="_blank">
{{ link }}
</a>
</p>
</template>
<script setup lang="ts">
interface Props {
/** github链接 */
link: string;
}
defineProps<Props>();
</script>
<style scoped></style>

View File

@ -3,5 +3,6 @@ import IconClose from './IconClose/index.vue';
import ButtonTab from './ButtonTab/index.vue';
import ChromeTab from './ChromeTab/index.vue';
import BetterScroll from './BetterScroll/index.vue';
import GithubLink from './GithubLink/index.vue';
export { CountTo, IconClose, ButtonTab, ChromeTab, BetterScroll };
export { CountTo, IconClose, ButtonTab, ChromeTab, BetterScroll, GithubLink };