mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2025-09-10 00:03:18 +08:00
chore: add docs
This commit is contained in:
5
docs/src/App.vue
Normal file
5
docs/src/App.vue
Normal file
@ -0,0 +1,5 @@
|
||||
<script lang="ts" setup></script>
|
||||
|
||||
<template>
|
||||
<router-view />
|
||||
</template>
|
5
docs/src/main.ts
Normal file
5
docs/src/main.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import { createApp } from 'vue'
|
||||
import App from './App.vue'
|
||||
const app = createApp(App)
|
||||
|
||||
app.mount('#app')
|
7
docs/src/pages/index.vue
Normal file
7
docs/src/pages/index.vue
Normal file
@ -0,0 +1,7 @@
|
||||
<script lang="ts" setup></script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<!-- -->
|
||||
</div>
|
||||
</template>
|
Reference in New Issue
Block a user