|
|
|
|
@ -4,8 +4,11 @@
|
|
|
|
|
<button>111</button>
|
|
|
|
|
<!-- <empty-panel /> -->
|
|
|
|
|
<input type="text" placeholder="1111">
|
|
|
|
|
<div style="margin-bottom: 20px;"></div>
|
|
|
|
|
<emptyPanel />
|
|
|
|
|
<div style="margin-bottom: 20px;"></div>
|
|
|
|
|
<u-button>月落</u-button>
|
|
|
|
|
<div style="margin-bottom: 20px;"></div>
|
|
|
|
|
<u-search placeholder="日照香炉生紫烟" v-model="keyword"></u-search>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
@ -13,6 +16,11 @@
|
|
|
|
|
<script>
|
|
|
|
|
import emptyPanel from './empty.vue'
|
|
|
|
|
export default {
|
|
|
|
|
data(){
|
|
|
|
|
return {
|
|
|
|
|
keyword:''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
'emptyPanel': emptyPanel
|
|
|
|
|
}
|
|
|
|
|
|