32 lines
477 B
Vue
32 lines
477 B
Vue
<template>
|
|
<uv-navbar
|
|
:title="title"
|
|
:leftIcon="leftIcon"
|
|
:bgColor="bgColor"
|
|
:titleStyle="titleStyle"
|
|
fixed
|
|
placeholder
|
|
>
|
|
</uv-navbar>
|
|
</template>
|
|
<script setup>
|
|
const props = defineProps({
|
|
title: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
leftIcon: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
bgColor: {
|
|
type: String,
|
|
default: '#ee2c37',
|
|
},
|
|
titleStyle: {
|
|
type: Object,
|
|
default: () => ({ color: '#fff' }),
|
|
},
|
|
})
|
|
</script>
|