我正在尝试开始这个:https://github.com/vuejs/vue-router
我克隆了包,并按照说明进行构建:
npm install
npm run build
但是我收到了“需要未定义”错误:
var Vue = require('vue')
var VueRouter = require('../src')
/pample/example.js中的
我已经安装了node和browserify ...不知道该怎么做。
答案 0 :(得分:1)
安装Browserify后,您是否完成了以下操作?
1)使用命令将所有.js文件捆绑到一个文件中(例如'bundle.js'):
browserify example/example.js -o bundle.js
2)将'bundle.js'脚本放入.html文件中:
<script src="bundle.js"></script>
重要提示:不要将'example.js'脚本放入.html文件中,因为'bundle.js'已经包含了'example.js'文件中的所有内容。