You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
342 B
26 lines
342 B
<template>
|
|
<div>
|
|
<hello/>
|
|
<info/>
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Hello from './components/Hello.vue'
|
|
import Info from './components/Info.vue'
|
|
|
|
export default {
|
|
components: {
|
|
Hello,
|
|
Info,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
padding: 10px;
|
|
}
|
|
</style>
|
|
|