首页 > 代码库 > Vue踩坑记

Vue踩坑记

首先,第一点;

定义一个模板 home.vue

<template>  <div class="hello">    <h1>hello</h1>  </div></template><script>export default {  name: hello,  data () {    return {    }  }}</script>

这些是必须的,不然会报错

然后是路由中定义

技术分享

只要import 了就必须在底下定义路由;

Vue踩坑记