選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
27 行
342 B
27 行
342 B
4年前
|
<template>
|
||
|
<div>
|
||
|
<h1>Welcome to Meteor!</h1>
|
||
|
<hello/>
|
||
|
<info/>
|
||
|
</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>
|