feature: implement section component structure

This commit is contained in:
Sagi 2022-09-29 13:37:27 +08:00
parent edf826f83a
commit 636e8e7dcb
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import { defineComponent, SetupContext } from "vue";
import { SectionProps, sectionProps } from "./section.props";
export default defineComponent({
name:'FSection',
props:sectionProps,
emits:[],
setup(props:SectionProps, context:SetupContext) {
return ()=>{
return (
)
}
},
})ß

View File

@ -0,0 +1,4 @@
import { ExtractPropTypes } from 'vue';
export const sectionProps = {};
export type SectionProps = ExtractPropTypes<typeof sectionProps>;