vuerouter-11_常用组件库

vue常用的组件库网址:https://github.com/vuejs/awesome-vue

1.v-tooltip的安装

npm install --save v-tooltip2.全局引入:
import VTooltip from ‘v-tooltip‘

Vue.use(VTooltip)3.实例:

<template>
<div class="mine">Mine
<button v-tooltip="‘You have ‘ + count + ‘ new messages.‘">按钮</button>
<br>
<br>
<button v-tooltip.bottom="‘You have 200 new messages.‘">按钮11</button>
<Nav />
</div>
</template>

<script>
import Nav from ‘../nav‘
export default {
name: ‘Mine‘,
components: {
Nav
},
data() {
return {
count:100
}
}
}
</script>

<style lang="css" scoped>
</style>

--------------------------------------------------------------------------------------------------------------

1.安装

npm install vue-progressbar --save2.全局引入:
import Vue from ‘vue‘
import VueProgressBar from ‘vue-progressbar‘
import App from ‘./App‘

const options = {
  color: ‘#bffaf3‘,
  failedColor: ‘#874b4b‘,
  thickness: ‘5px‘,
  transition: {
    speed: ‘0.2s‘,
    opacity: ‘0.6s‘,
    termination: 300
  },
  autoRevert: true,
  location: ‘left‘,
  inverse: false
}

Vue.use(VueProgressBar, options)3.实例:

<template>
<div class="order">
order
<vue-progress-bar></vue-progress-bar>
<Nav />
</div>
</template>

<script>
import Nav from ‘../Nav‘
export default{
name:"Order",
components:{
Nav
},
data(){
return{

}
},
mounted () {
// [App.vue specific] When App.vue is finish loading finish the progress bar
this.$Progress.finish()
},
created () {
// [App.vue specific] When App.vue is first loaded start the progress bar
this.$Progress.start()
// hook the progress bar to start before we move router-view
this.$router.beforeEach((to, from, next) => {
// does the page we want to go to have a meta.progress object
if (to.meta.progress !== undefined) {
let meta = to.meta.progress
// parse meta tags
this.$Progress.parseMeta(meta)
}
// start the progress bar
this.$Progress.start()
// continue to next page
next()
})
// hook the progress bar to finish after we‘ve finished moving router-view
this.$router.afterEach((to, from) => {
// finish the progress bar
this.$Progress.finish()
})
}
}
</script>

<style lang="css" scoped>
</style>

 


原文地址:https://www.cnblogs.com/xiao-peng-ji/p/11406602.html

时间: 2024-11-10 07:40:49

vuerouter-11_常用组件库的相关文章

Web移动端的常用组件库

normalize http://necolas.github.io/normalize.css/ 最受欢迎的css reset 保留有用的默认值,这个区别于其他的CSS resets 标准化大范围的HTML elements的样式纠正bugs,使浏览器具体通用性 通过一些巧妙的改进来增强可用性 用具体的说明来讲解代码的用处 topcoat http://topcoat.io/topcoat/ 一套非常精致的UI元素类库,提供了常用了基础组件 Bootstrap http://getbootst

vue.js 常用组件库

vux github ui demo:https://github.com/airyland/vux Mint UI 项目主页:http://mint-ui.github.io/#!/zh-cndemo:http://elemefe.github.io/mint-ui/#/github地址:https://github.com/ElemeFE/mint-ui中文文档地址:http://mint-ui.github.io/docs/#!/zh-cn iview iView 配套的工作流:https

前端组件库大合集-必备收藏

前端组件库 搭建web app常用的样式/组件等收集列表(移动优先) 0. 前端自动化(Workflow) 前端构建工具 Yeoman – a set of tools for automating development workflow gulp – The streaming build system grunt – the JavaScript Task Runner F.I.S – 前端集成解决方案 前端模块管理器 Bower – A package manager for the w

react-native使用蚂蚁金服的antd-mobile组件库教程

国际惯例,先来展示下这个强大的组建库,常用的大部分组建都可以找到 9A99D507-9505-478F-956C-8F243CFECAF5.png https://mobile.ant.design 这是组件库网站 阿里旗下的 https://github.com/ant-design/ant-design-mobile 这是github网址,里面有源码,源码里面有使用案例,还有iOS和Android的apk安装包,扫一扫二维码就可以下载安装到手机. 安装步骤 1. npm install re

微软常用运行库合集自动安装程序

相信使用windows的小伙伴们都遇到过运行库报错的问题,尤其是使用绿色软件的时候,比如QQ和PS,由于在精简的时候把运行库精简掉了,所以难免会出现运行库报错.除了市面上的盗版ghost系统会内置运行库外,一般来说,微软原版的windows比较干净,没有集成运行库. 包含组件 * Visual Basic Virtual Machine(5.1) * Visual Basic Virtual Machine (6.0) * Microsoft C Runtime Library(7.0) * M

EasyUI常用组件(基础)

---------------------------------------------------------------------------------------------------------------[版权申明:本文系作者原创,转载请注明出处]文章出处:http://blog.csdn.net/sdksdk0/article/details/51914553作者:朱培    ID:sdksdk0----------------------------------------

SUI组件库

目的是为了手机H5页面提供一个常用的组件库,减少重复工作,也就是不重复造轮子. http://m.sui.taobao.org/components/#bars

android开发常用组件【持续更新中。。。】

UI相关 图片 Android-Universal-Image-Loader:com.nostra13.universalimageloader:异步加载.缓存.显示图片 ImageLoader:com.novoda.imageloader:异步加载.缓存.显示图片 picasso:com.squareup.picasso:功能强大的图片下载缓存库 PhotoView:uk\co\senab\photoview:支持缩放和各种手势的ImageView ListView JazzyListView

Android常用组件

UI相关 图片 Android-Universal-Image-Loader:com.nostra13.universalimageloader:异步加载.缓存.显示图片 ImageLoader:com.novoda.imageloader:异步加载.缓存.显示图片 picasso:com.squareup.picasso:功能强大的图片下载缓存库 PhotoView:uk\co\senab\photoview:支持缩放和各种手势的ImageView ListView JazzyListView