艺易修小程序24.08.21
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.
 
 
 
 

26 lines
366 B

<template>
<view class="navbar">
<uv-navbar :title="title" @leftClick="leftClick" placeholder></uv-navbar>
</view>
</template>
<script>
export default {
name:"navbar",
props : {
title : {
type : String,
default : '参数'
},
leftClick : {
type : Function,
require : true
}
}
}
</script>
<style lang="scss" scoped>
</style>