add wip loader

This commit is contained in:
taskylizard 2023-10-28 17:34:09 +05:30
parent 36a157b647
commit b51440fb49
No known key found for this signature in database
GPG key ID: 5CABA3D642DDC497
3 changed files with 60 additions and 0 deletions

16
guides.md Normal file
View 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>