fix data
This commit is contained in:
22
stores/frontSection.ts
Normal file
22
stores/frontSection.ts
Normal file
@ -0,0 +1,22 @@
|
||||
export interface FrontPageSection {
|
||||
id_front_page: number
|
||||
id_position: number
|
||||
id_section: number
|
||||
front_section: FrontSection
|
||||
}
|
||||
|
||||
export interface FrontSection {
|
||||
id: number
|
||||
name: string
|
||||
img: string[]
|
||||
component_name: string
|
||||
is_no_lang: boolean
|
||||
page_name: string
|
||||
front_section_lang: FrontSectionLang[]
|
||||
}
|
||||
|
||||
export interface FrontSectionLang {
|
||||
data: unknown
|
||||
id_front_section: number
|
||||
id_lang: number
|
||||
}
|
Reference in New Issue
Block a user