en-search.vue 463 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="">
  3. <uni-search-bar radius="30" :placeholder="placeholder" :bgColor="bgColor" />
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. placeholder: {
  10. type: String,
  11. default: ''
  12. },
  13. bgColor: {
  14. type: String,
  15. default: '#ffffff'
  16. },
  17. back: {
  18. type: Boolean,
  19. default: false
  20. },
  21. },
  22. data() {
  23. return {
  24. value: ''
  25. }
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. </style>