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.
27 rivejä
342 B
27 rivejä
342 B
4 vuotta sitten
|
<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>
|