Files
myprojplanet_vite/src/components/CTitlePage/CTitlePage.vue
2022-12-02 10:44:57 +01:00

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>