| 123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="">
- <uni-search-bar radius="30" :placeholder="placeholder" :bgColor="bgColor" />
- </view>
- </template>
- <script>
- export default {
- props: {
- placeholder: {
- type: String,
- default: ''
- },
- bgColor: {
- type: String,
- default: '#ffffff'
- },
- back: {
- type: Boolean,
- default: false
- },
- },
- data() {
- return {
- value: ''
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
-
- </style>
|