2019-12-04 02:05:08 +01:00
|
|
|
<template>
|
2020-01-03 22:03:59 +01:00
|
|
|
<div>
|
|
|
|
|
<q-banner
|
|
|
|
|
inline-actions
|
|
|
|
|
rounded dense
|
|
|
|
|
:class="bgcolor+` q-my-sm `+clcolor+ ` ` + myclass"
|
|
|
|
|
style="text-align: center; "
|
|
|
|
|
@click="myvisible = !myvisible"
|
|
|
|
|
>
|
|
|
|
|
<template v-slot:avatar>
|
|
|
|
|
<q-icon v-if="canopen" :name="icon" color="white"/>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:action>
|
|
|
|
|
<div class="cursor-pointer">
|
|
|
|
|
<q-icon v-if="canopen" :name="iconopen" color="white"/>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<span :class="`mybanner `+ myclasstext" :style="mystyle">{{title}}</span>
|
|
|
|
|
</q-banner>
|
2019-12-27 12:43:42 +01:00
|
|
|
|
2020-01-03 22:03:59 +01:00
|
|
|
<q-slide-transition>
|
|
|
|
|
<div v-show="myvisible">
|
|
|
|
|
<slot></slot>
|
|
|
|
|
</div>
|
|
|
|
|
</q-slide-transition>
|
2019-12-27 12:43:42 +01:00
|
|
|
|
2020-01-03 22:03:59 +01:00
|
|
|
</div>
|
2019-12-04 02:05:08 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./CTitleBanner.ts">
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
2020-01-03 22:03:59 +01:00
|
|
|
@import './CTitleBanner.scss';
|
2019-12-04 02:05:08 +01:00
|
|
|
</style>
|