25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
26 satır
342 B
26 satır
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>
|
|
|