This commit is contained in:
skycurtain 2025-03-17 16:33:14 +08:00
parent 88c2511188
commit 516fcf6b82
3 changed files with 15 additions and 1 deletions

View File

@ -1,7 +1,10 @@
<script setup lang="ts"></script> <script setup lang="ts">
import { Splitter } from './components/Splitter'
</script>
<template> <template>
<div>Splitter</div> <div>Splitter</div>
<Splitter />
</template> </template>
<style scoped></style> <style scoped></style>

View File

@ -0,0 +1,11 @@
import { defineComponent, h } from 'vue'
export const Splitter = defineComponent({
props: {},
emits: {},
setup() {
return () => {
return h('div', () => '123')
}
},
})

View File