[TOC]
#### Vue icon 组件
~~~
<template>
<span class="support-ico" :class="iconCls"></span>
</template>
<script type="text/ecmascript-6">
export default {
name: "SupportIco",
props: {
size: String,
type: String
},
computed: {
iconCls() {
const classMap = ['decrease', 'discount', 'special', 'invoice', 'guarantee']
return `icon-${this.size} ${classMap[this.type]}`
}
}
}
</script>
<style lang="stylus" rel="stylesheet/stylus" scoped>
.support-ico
display inline-block
&.icon-1
width 12px
height 12px
&.decrease
background url('decrease_1@2x.png') no-repeat center center / 12px 12px
&.discount
background url('discount_1@2x.png') no-repeat center center / 12px 12px
&.special
background url('special_1@2x.png') no-repeat center center / 12px 12px
&.invoice
background url('invoice_1@2x.png') no-repeat center center / 12px 12px
&.guarantee
background url('guarantee_1@2x.png') no-repeat center center / 12px 12px
&.icon-2
width 16px
height 16px
&.decrease
background url('decrease_2@2x.png') no-repeat center center / 16px 16px
&.discount
background url('discount_2@2x.png') no-repeat center center / 16px 16px
&.special
background url('special_2@2x.png') no-repeat center center / 16px 16px
&.invoice
background url('invoice_2@2x.png') no-repeat center center / 16px 16px
&.guarantee
background url('guarantee_2@2x.png') no-repeat center center / 16px 16px
&.icon-3
width 12px
height 12px
&.decrease
background url('decrease_3@2x.png') no-repeat center center / 12px 12px
&.discount
background url('discount_3@2x.png') no-repeat center center / 12px 12px
&.special
background url('special_3@2x.png') no-repeat center center / 12px 12px
&.invoice
background url('invoice_3@2x.png') no-repeat center center / 12px 12px
&.guarantee
background url('guarantee_3@2x.png') no-repeat center center / 12px 12px
</style>
~~~
- 起步
- 环境搭建
- mock数据
- 基础
- 生命周期
- 过滤器
- 过渡动画
- keyframes动画
- 动画JS钩子
- 路由
- 导航守卫
- 全局守卫
- 监听器
- 自定义组件
- 获取焦点
- mixins
- mixins抽离vuex
- 国际化
- 动态组件
- Dom
- 扩展
- 安装devTools
- scss
- Nuxt引用多个UI库
- vuex
- vuex命名空间
- vuex定义
- cli
- 安装与卸载
- 环境变量
- 杂项
- Mock数据
- FeHelper
- git
- 反向代理
- 本地存储
- stylus
- 常用mixins
- jsonp
- 配置
- mock配置
- 跨域配置
- 自定义路径
- px2rem
- 代理后端请求
- 常用算法
- 字母排序城市数据
- 倒计时
- 通讯录数据结构
- 请求
- axios防止多次请求
- 封装axios请求
- axios使用
- 封装axios
- 插件
- BetterScroll
- 高德定位
- polyfill
- fastClick
- LazyLoad
- storageCache
- moment
- keyFrameAnimation
- vueSwiper
- 组件
- Loading组件
- header组件
- 仿有道App导航
- SupportIcon
- 仿饿了么购物车跳动
- 购物车小球缓动
- 小球飞入购物车
- 仿音乐歌手列表
- 唱片飞入效果
- 搜索组件
- 仿美团PC搜索框
- 页面布局
- stickyFooter
- 背景色渐变
- 背景虚化
- Ui组件
- CubeUi
- CreateApi
- tab滑屏切换
- 索引列表
- BScroll
- BScroll左右联动导航
- vant
- 函数库
- 常用Dom函数库
- axios封装
- 格式化音乐播放时长
- 搜索节流
- time格式化
- JS基础
- window对象中的高度
- JS中的宽高
- 常用正则
- nuxt
- nuxtVuex
- 监听页面滚动
- 监听body滚动
- 监听局部滚动