25 lines
423 B
Vue
25 lines
423 B
Vue
<template>
|
|
<div class="hello">
|
|
<h1>{{ msg }}</h1>
|
|
<p>
|
|
For a guide and recipes on how to configure / customize this project,<br>
|
|
check out the
|
|
<a href="https://cli.vuejs.org" target="_blank" rel="noopener">vue-cli documentation</a>.
|
|
</p>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'HelloWorld',
|
|
props: {
|
|
msg: String
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
|
|
</style>
|