test
This commit is contained in:
parent
88c2511188
commit
516fcf6b82
@ -1,7 +1,10 @@
|
||||
<script setup lang="ts"></script>
|
||||
<script setup lang="ts">
|
||||
import { Splitter } from './components/Splitter'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>Splitter</div>
|
||||
<Splitter />
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
||||
|
11
src/components/Splitter.ts
Normal file
11
src/components/Splitter.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { defineComponent, h } from 'vue'
|
||||
|
||||
export const Splitter = defineComponent({
|
||||
props: {},
|
||||
emits: {},
|
||||
setup() {
|
||||
return () => {
|
||||
return h('div', () => '123')
|
||||
}
|
||||
},
|
||||
})
|
0
src/components/interface.ts
Normal file
0
src/components/interface.ts
Normal file
Loading…
x
Reference in New Issue
Block a user