mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
28 lines
346 B
Vue
28 lines
346 B
Vue
<template>
|
|
<div>
|
|
<div
|
|
style="
|
|
height: 10px;
|
|
width: 100%;
|
|
background-color: red;
|
|
min-width: 1000px;
|
|
"
|
|
/>
|
|
<case2 />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import case2 from './case2.demo.vue'
|
|
|
|
export default {
|
|
components: {
|
|
case2
|
|
},
|
|
data () {
|
|
return {}
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|