上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 112 下一页
摘要: // import Furong from '@/components/Furong' // import Quange from '@/components/Quange' const Quange = () => import('@/components/Quange') const Furon 阅读全文
posted @ 2021-07-08 15:59 thomas_blog 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 动态id index.js export default new Router({ routes: [{ path: '/Furong/:id', name: 'Furong', component: Furong }, }) App.vue <template> <div id="app"> <i 阅读全文
posted @ 2021-07-08 15:30 thomas_blog 阅读(131) 评论(0) 推荐(0) 编辑
摘要: Quange.vue <template> <div id="Quange"> <p>{{msg}}</p> <button type="button" @click="onClick">跳转</button> </div> </template> <script> export default { 阅读全文
posted @ 2021-07-08 14:35 thomas_blog 阅读(51) 评论(0) 推荐(0) 编辑
摘要: <!-- 渲染成button --> <router-link to="/Quange" tag="button">Quange</router-link> <!-- 取消返回效果 --> <router-link to="/Furong" replace="">Furong</router-lin 阅读全文
posted @ 2021-07-08 14:32 thomas_blog 阅读(19) 评论(0) 推荐(0) 编辑
摘要: index.js import Vue from 'vue' import Router from 'vue-router' import HelloWorld from '@/components/HelloWorld' Vue.use(Router) export default new Rou 阅读全文
posted @ 2021-07-08 14:12 thomas_blog 阅读(183) 评论(0) 推荐(0) 编辑
摘要: Furong.vue <template> <div id="Furong"> <p>{{msg}}</p> </div> </template> <script> export default { name: 'Furong', data() { return { msg: 'hello furo 阅读全文
posted @ 2021-07-08 14:02 thomas_blog 阅读(32) 评论(0) 推荐(0) 编辑
摘要: install cnpm i -g @vue/cli 创建一个新项目 vue create hello-world 拉取 2.x 模板 (旧版本) npm install -g @vue/cli-init # `vue init` 的运行效果将会跟 `vue-cli@2.x` 相同 vue init 阅读全文
posted @ 2021-07-07 19:15 thomas_blog 阅读(20) 评论(0) 推荐(0) 编辑
摘要: server cnpm install webpack-dev-server --save-dev package.json "scripts": { "build": "webpack", "dev": "webpack-dev-server --inline --host localhost - 阅读全文
posted @ 2021-07-07 18:44 thomas_blog 阅读(18) 评论(0) 推荐(0) 编辑
摘要: plugin cnpm install uglifyjs-webpack-plugin --save-dev webpack.config.js const UglifyJsPlugin = require('uglifyjs-webpack-plugin'); plugins: [ new Ugl 阅读全文
posted @ 2021-07-07 17:48 thomas_blog 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 所有依赖,自动生成 plugin cnpm i --save-dev html-webpack-plugin webpack.config.js const HtmlWebpackPlugin = require("html-webpack-plugin"); output: { // 手动修改ht 阅读全文
posted @ 2021-07-07 17:39 thomas_blog 阅读(51) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 112 下一页