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

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