mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-06 05:23:46 +08:00
34 lines
528 B
Vue
34 lines
528 B
Vue
|
|
<!-- 需要组件再去使用 -->
|
|
|
|
<!--
|
|
<template>
|
|
<div class="hello">
|
|
<h1>{{ msg }}</h1>
|
|
<h2>Router Links</h2>
|
|
<ul>
|
|
<li><router-link to="/index">点我跳转到第一页</router-link></li>
|
|
<li><router-link to="/second">点我跳转到第二页</router-link></li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'hello',
|
|
data () {
|
|
return {
|
|
msg: 'Welcome to Your Vue.js App',
|
|
test: 'test'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
h1{
|
|
color: red;
|
|
}
|
|
</style>
|
|
-->
|