推广小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

77 lines
1.4 KiB

<template>
<uv-navbar :leftIconColor="leftIconColor" :autoBack="autoBack" :title="title" :bgColor="bgColor" :leftIconSize="leftIconSize" :height="height" :titleStyle="titleStyle" @leftClick="leftClick"></uv-navbar>
</template>
<script>
export default {
data() {
return {
};
},
props: {
autoBack: {
type: Boolean,
default: false,
required: false
},
title: {
type: String,
default: '',
required: false
},
bgColor: {
type: String,
default: 'transparent',
required: false
},
leftIconSize: {
type: String,
default: '20rpx',
required: false
},
leftIconColor: {
type: String,
default: '',
required: false
},
height: {
type: String,
default: '100rpx',
required: false
},
titleStyle: {
type: Object,
default: {},
required: false
},
autoBack: {
type: Boolean,
default: false,
required: false
},
},
components: {
},
computed: {
},
watch: {
},
created() {
},
mounted() {
},
methods: {
leftClick() {}
}
};
</script>
<style scoped lang="scss">
</style>