36 lines
713 B
Vue
Executable File
36 lines
713 B
Vue
Executable File
<template>
|
|
<div v-if="!table">
|
|
<q-banner
|
|
rounded
|
|
dense
|
|
class="text-white row"
|
|
:style="`text-align: center; background-color: ${mycolor}`"
|
|
>
|
|
<template v-if="!table" v-slot:avatar>
|
|
<q-icon :name="myicon" size="xs" />
|
|
</template>
|
|
<span v-if="!table" class="mybanner">{{ mytitle }}</span>
|
|
</q-banner>
|
|
</div>
|
|
<div
|
|
v-else
|
|
>
|
|
<CBarSelection
|
|
:myicon="myicon"
|
|
:mytitle="mytitle"
|
|
:mycolor="mycolor"
|
|
:prop_search="false"
|
|
:table="table"
|
|
>
|
|
<slot />
|
|
</CBarSelection>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" src="./CTitlePage.ts">
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import './CTitlePage.scss';
|
|
</style>
|