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.

consumerSearch.vue 387 B

3 years ago
1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="box">
  3. <view style="width: 690rpx;margin: 0 auto;margin-top: 20rpx;">
  4. <u-search placeholder="请输入" v-model="keyword"></u-search>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default{
  10. data(){
  11. return{
  12. keyword:''
  13. }
  14. }
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. .box {
  19. width: 100%;
  20. height: 100%;
  21. // background: #F8F8F8;
  22. }
  23. </style>