关于Vue.use()详解 问题 相信很多人在用Vue使用别人的组件时,会用到 Vue.use() 。例如:Vue.use(VueRouter)、Vue.use(MintUI)。但是用 axios时,就不需要用 Vue.use(axios),就能直接使用。那这是为什么呐? 答案 因为 axios 没 ...
分类:
其他好文 时间:
2018-03-01 23:38:39
阅读次数:
4587
问题 相信很多人在用Vue使用别人的组件时,会用到 Vue.use() 。例如:Vue.use(VueRouter)、Vue.use(MintUI)。但是用 axios时,就不需要用 Vue.use(axios),就能直接使用。那这是为什么呐? 答案 因为 axios 没有 install。 什么意 ...
分类:
其他好文 时间:
2018-03-01 23:24:26
阅读次数:
193
// 0. 如果使用模块化机制编程,導入Vue和VueRouter,要调用 Vue.use(VueRouter) // 1. 定义(路由)组件。 // 可以从其他文件 import 进来 var Foo = { template: 'foo' } var Bar = { template: 'bar... ...
分类:
其他好文 时间:
2018-02-11 21:27:33
阅读次数:
199
在router.js中修改, const router = new VueRouter({ mode: 'history', routes: [...] }) ...
分类:
其他好文 时间:
2018-01-27 17:12:53
阅读次数:
192
vue 中简单路由的实现 1. 引入vue-router,如果是在脚手架中,引入VueRouter之后,需要通过Vue.use来注册插件``` import Vue from 'vue' import Router from 'vue-router' Vue.use(Router)```2. 创建r ...
分类:
其他好文 时间:
2017-12-24 20:06:58
阅读次数:
123
routes ,Vue, VueRouter,store 都是跟vue vuex 和vuerouter 有关的 $是为了进行类似jquery的操作引进的库 FastClick解决移动端点击300ms延迟的问题 直接FastClick.attach(document.body) alert是当有err ...
分类:
Web程序 时间:
2017-11-26 22:55:03
阅读次数:
301
index.html入口页面<!DOCTYPEhtml>
<html>
<headlang="en">
<metacharset="UTF-8">
<title>vue</title>
<linkhref="../css/index.css"rel="stylesheet">
<scriptsrc="../dist/js/requirejs-2.1.22.js"></script>
<..
分类:
Web程序 时间:
2017-11-14 17:20:35
阅读次数:
271
搭建项目架构 目采用Webpack+Vue-router的架构方式,开始安装(一切操作都在windows系统上完成) 1.按Win+R,然后在文本框中输入cmd,回车打开命令行,输入vue-cli安装命令: -g:表示全局安装 2.在命令行中初始化项目,采用的是webpack模板,输入初始化命令: ...
分类:
移动开发 时间:
2017-11-14 16:27:29
阅读次数:
307
说明:本demo使用yarn代替npm指令来下载一系列依赖,有详细指令说明;使用WebStorm下Terminal来输入指令; >开始(确认已经安装node环境和yarn包管理工具) 1、新建项目文件名为vuedemo 2、yarn add init 初始化项目 >安装项目依赖 3、yarn add ...
分类:
Web程序 时间:
2017-11-13 13:53:43
阅读次数:
257
三、通过VueRouter来实现组件之间的跳转提供了3种方式实现跳转:①直接修改地址栏中的路由地址 ②通过router-link实现跳转<router-link to="/myRegister">注册</router-link> ③通过js的编程的方式 jumpToLogin: function ( ...
分类:
其他好文 时间:
2017-11-02 21:09:48
阅读次数:
193