Skip to content

Panel-DEMO


vue
<fv-Panel v-model="basic">
</fv-Panel>

Panel Near Side


vue
<fv-Panel v-model="nearSide" :isNearSide="true">
</fv-Panel>

Panel Central Side


Global Append

vue
<fv-Panel v-model="centralSide" :isCentralSide="true" :teleport="true" width="calc(90% - 50px)" height="calc(90% - 50px)">
</fv-Panel>

Panel Top Side


vue
<fv-Panel v-model="topSide" :isTopSide="true" :isLightDismiss="true" width="100%" height="500px">
</fv-Panel>

Panel Bottom Side


vue
<fv-Panel v-model="bottomSide" :isBottomSide="true" :isLightDismiss="true" width="100%" height="500px">
</fv-Panel>

Panel Light Dismiss


vue
<fv-Panel v-model="lightDismiss" :isLightDismiss="true">
</fv-Panel>

Panel Acrylic


vue
<fv-Panel v-model="acrylic" :isLightDismiss="true" :isAcrylic="true">
</fv-Panel>

vue
<fv-Panel v-model="footer" :isFooter="true" :isAcrylic="true">
    <template v-slot:footer>
        <fv-button theme="dark" background="rgba(0, 90, 158, 1)">OK</fv-button>
        <fv-button>Cancel</fv-button>
    </template>
</fv-Panel>

Panel Dark Theme


Standard

vue
<fv-Panel v-model="dark" :isLightDismiss="true" theme="dark">
</fv-Panel>

Acrylic

vue
<fv-Panel v-model="acrylicDark" :isLightDismiss="true" :isAcrylic="true" theme="dark">
</fv-Panel>

Properties


PropertyTypeRequiredDefaultDescription
modelValueanyNo!falseSee the Panel modelValue option.
titlestringNo'Sample Panel'Title.
titleSizenumberNo20See the Panel titleSize option.
titleWeightnumberNo600See the Panel titleWeight option.
titleColorstringNo''See the Panel titleColor option.
widthstringNo'340'See the Panel width option.
heightstringNo'100%'See the Panel height option.
backgroundstringNo''See the Panel background option.
isNearSidebooleanNofalseSee the Panel isNearSide option.
isCentralSidebooleanNofalseSee the Panel isCentralSide option.
isLightDismissbooleanNofalseSee the Panel isLightDismiss option.
showTitleBarbooleanNotrueSee the Panel showTitleBar option.
isFooterbooleanNofalseSee the Panel isFooter option.
isAcrylicbooleanNofalseSee the Panel isAcrylic option.
controlPaddingstringNo'15px'See the Panel controlPadding option.
contentPaddingstringNo'0px'See the Panel contentPadding option.
isBottomSidebooleanNofalseSee the Panel isBottomSide option.
isTopSidebooleanNofalseSee the Panel isTopSide option.
teleportbooleanNofalseSee the Panel teleport option.
themestringNo'global'Theme style. Supports global, light, dark, system, and custom.
disabledbooleanNofalseSee the Panel disabled option.
langstringNo"global"See the Panel lang option.

Slots


  1. Container
javascript
<template v-slot:container>
</template>
  1. Header
javascript
<template v-slot:header>
</template>
  1. Footer
javascript
<template v-slot:footer>
</template>

MIT Licensed