22 lines
302 B
Vue
22 lines
302 B
Vue
<template>
|
|
<div class="hello">
|
|
<h1>{{ msg }}</h1>
|
|
<p>
|
|
some message ...
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'HelloWorld',
|
|
props: {
|
|
msg: String
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style scoped>
|
|
</style>
|