2016-12-07 14:32:25 +08:00

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>
-->