search.vue 232 B

12345678910111213141516171819
  1. <template>
  2. <view class="container">
  3. 搜索页面
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. title: ''
  11. }
  12. },
  13. onLoad() {},
  14. methods: {}
  15. }
  16. </script>
  17. <style lang="scss" scoped></style>