20 lines
232 B
Vue
20 lines
232 B
Vue
|
<template>
|
||
|
<view class="container">
|
||
|
搜索页面
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
title: ''
|
||
|
}
|
||
|
},
|
||
|
onLoad() {},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped></style>
|