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

View File

@@ -0,0 +1 @@
47a9a44f-42ce-4a96-9c9a-a3652874ef9e

View File

@@ -0,0 +1,21 @@
<template>
<div class="home">
<h2>{{ title }}</h2>
</div>
</template>
<script lang="ts">
import { onMounted, toRefs, reactive, computed } from '@vue/composition-api'
export default {
setup(props: any) {
const state = reactive({
title: '关于我'
});
return {
...toRefs(state)
}
}
}
</script>

View File

@@ -0,0 +1,23 @@
<template>
<div class="home">
<h2>{{ title }}</h2>
<db-list :Demos="[1,2,3,4,5,6]"></db-list>
<db-buttons></db-buttons>
</div>
</template>
<script lang="ts">
import { onMounted, toRefs, reactive, computed } from '@vue/composition-api'
export default {
setup(props: any) {
const state = reactive({
title: '首页'
});
return {
...toRefs(state)
}
}
}
</script>