first commit

This commit is contained in:
编码猿
2024-09-27 00:57:27 +08:00
commit 18df0f5e4b
2548 changed files with 253280 additions and 0 deletions

20
dbui/examples/App.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<div id="app">
<div id="nav">
<h2>App.vue</h2>
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
</div>
<router-view/>
</div>
</template>
<script lang="ts">
export default {
name: 'App'
}
</script>
<style lang="less">
@import "../src/styles/index.less";
</style>