nuxt-for-preset
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
454 B

<template>
<div class="panel" :style="{'backgroundColor':color?color:'#ffffff'}">
<div class="panel__wrapper layer m-auto">
<h2>{{vtitle}}</h2>
<div class="panel__desc">
<div class="panel__desc__word">{{vdesc}}</div>
</div>
<slot></slot>
</div>
</div>
</template>
<script>
export default {
props: ['vtitle', 'vdesc', 'color'],
}
</script>
<style lang="scss" scoped>
@import "./style.scss";
</style>