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.

21 lines
297 B
Vue

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