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

25 lines
366 B

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. <template>
  2. <view class="navbar">
  3. <uv-navbar :title="title" @leftClick="leftClick" placeholder></uv-navbar>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name:"navbar",
  9. props : {
  10. title : {
  11. type : String,
  12. default : '参数'
  13. },
  14. leftClick : {
  15. type : Function,
  16. require : true
  17. }
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. </style>