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.
30 lines
684 B
30 lines
684 B
<template>
|
|
<div class="layer m-auto panel">
|
|
<h2>{{vtitle}}</h2>
|
|
<div class="panel__desc">
|
|
<div class="panel__desc__word">{{vdesc}}</div>
|
|
</div>
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props:['vtitle','vdesc'],
|
|
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@media screen and (min-width:1440px){
|
|
@import '@/assets/pc-1920.scss';
|
|
@import './pc.scss';
|
|
}
|
|
@media screen and (min-width:768px) and (max-width:1440px) {
|
|
@import '@/assets/pc-1366.scss';
|
|
@import './pc.scss';
|
|
}
|
|
@media screen and (max-width:768px) {
|
|
@import '@/assets/pc-768.scss';
|
|
@import './pc.scss';
|
|
}
|
|
|
|
</style>
|
|
|