27 lines
509 B
Vue
27 lines
509 B
Vue
<template>
|
|
<q-toolbar>
|
|
<q-toolbar-title class="text-subtitle2 text-bold">{{
|
|
tittle
|
|
}}</q-toolbar-title>
|
|
<q-btn
|
|
icon="close"
|
|
unelevated
|
|
round
|
|
dense
|
|
@click="close"
|
|
style="color: #ff8080; background-color: #ffdede"
|
|
/>
|
|
</q-toolbar>
|
|
</template>
|
|
<script setup lang="ts">
|
|
const props = defineProps({
|
|
tittle: String,
|
|
close: {
|
|
type: Function,
|
|
default: () => console.log("not function"),
|
|
},
|
|
});
|
|
function close() {
|
|
props.close();
|
|
}
|
|
</script>
|