You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
638 B
Vue
33 lines
638 B
Vue
<template>
|
|
<div>首页
|
|
|
|
<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 style="margin-bottom: 20px;"></div>
|
|
<g-empty />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import emptyPanel from './empty.vue'
|
|
export default {
|
|
data(){
|
|
return {
|
|
keyword:''
|
|
}
|
|
},
|
|
components: {
|
|
'emptyPanel': emptyPanel
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style> |