not really getting the feel for this, will continue later, need to really learn how this works
16 lines
170 B
Vue
16 lines
170 B
Vue
<template>
|
|
<div class="hello">
|
|
<h1>{{ msg }}</h1>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'HelloWorld',
|
|
props: {
|
|
msg: String
|
|
}
|
|
}
|
|
</script>
|