22 lines
194 B
Vue
22 lines
194 B
Vue
|
<template>
|
||
|
<main>
|
||
|
<demo/>
|
||
|
</main>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Demo from './Demo'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
Demo
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
main {
|
||
|
padding: 24px;
|
||
|
}
|
||
|
</style>
|