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,27 @@
<template>
<div class="db-button">
<button>button 按钮组件</button>
</div>
</template>
<script lang="ts">
import { toRefs, Ref, ref, reactive, PropOptions } from '@vue/composition-api'
import { UnwrapRef} from '@vue/composition-api/dist/reactivity'
export default {
name: 'buttons',
props: {
},
setup(props: PropOptions) {
const state: UnwrapRef<{
title: Ref<string>
}> = reactive({
title: ref('ui框架组件 - button')
});
return {
...toRefs(state)
}
}
}
</script>