Scenario Services Components
light
IArticle
IArticle consits of few of components such as
  • IArticleLayout
  • IArticleBanner
  • IArticleMeta
  • IArticleBody
  • IArticleInsights
<template>
    <div>
        <i-article-banner ..../>
        <i-article-layout>

            <template #meta>
                <i-artilce-meta ...../>
            </template>

            <template #body>
                <i-artilce-body>
                            <i-artilce-insight  title='....'>
                            .................
                            <i-artilce-insight/>
                            .................

                <i-artilce-body/>

            </template>

            <template #resource>
            ...............
            </template>

        </i-article-layout>

    <div>

</template>
        
IArticleLayout example .
We can also use default slot for multiple columns layout.