|
|
- <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>
|