Files
ClassContent/历届学生/fontendseven/项目练习/上课项目/uniapp-pte/components/HelloWorld.vue
2024-09-27 02:06:13 +08:00

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>