mirror of
https://github.com/fmhy/edit.git
synced 2026-02-19 09:41:17 +11:00
add wip loader
This commit is contained in:
parent
36a157b647
commit
b51440fb49
3 changed files with 60 additions and 0 deletions
16
guides.md
Normal file
16
guides.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
title: Guides
|
||||
---
|
||||
<script setup>
|
||||
import { data } from "./.vitepress/loaders/guides.data";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<h2>Guides</h2>
|
||||
<br />
|
||||
<ul>
|
||||
<li v-for"link in data">
|
||||
<a :href="link.url">{{ link.title }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue