Witam dzisiaj zacząłem pracę z Cli 3 prześledziłem kod i napisałem prosty komponent
helloworld.vue
<template>
<div>
<h1>{{ msg }}</h1>
</div>
</template>
<script>
export default {
name: "HelloWorld",
props: {
msg: String
}
};
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>
oraz app.vue
<template>
<div id="app">
<HelloWorld>Hello world!</HelloWorld>
</div>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
name: "App",
components: {
HelloWorld
}
};
</script>
<style>
#app {
font-family: "Avenir", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
siedzę nad tym już od 17 przepisałem już to chyba z 4 razy i nie mogę znaleźć błędu. Mimo że powinno wypisać się Hello world to nic się nie dzieje.