feature: implement section component structure
This commit is contained in:
parent
edf826f83a
commit
636e8e7dcb
|
@ -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 (
|
||||
|
||||
)
|
||||
}
|
||||
},
|
||||
})ß
|
|
@ -0,0 +1,4 @@
|
|||
import { ExtractPropTypes } from 'vue';
|
||||
|
||||
export const sectionProps = {};
|
||||
export type SectionProps = ExtractPropTypes<typeof sectionProps>;
|
Loading…
Reference in New Issue