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.
|
<template>
|
|
<div>首页
|
|
|
|
<button>111</button>
|
|
<!-- <empty-panel /> -->
|
|
<input type="text" placeholder="1111">
|
|
<emptyPanel />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import emptyPanel from './empty.vue'
|
|
export default {
|
|
components: {
|
|
'emptyPanel': emptyPanel
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style> |