vue基础以及常用组件大集合

1.创建项目 -脚手架快速构建

//注:cli前全局安装 webpack与vue
npm install webpack -g webpack -v;
vue-cli vue -V
//执行
vue init webpack vue_demo

2.配置sass ,以及全局引入sass变量

npm install --save-dev sass-loader
npm install --save-dev node-sass
npm install --save-dev sass-resources-loader

//在 build 文件夹下找到 util.js 修改sass编译器loader的配置
function resolveResource(name) {
    return path.resolve(__dirname, '../src/style/' + name);
}
function generateSassResourceLoader() {
   var loaders = [
        cssLoader,
        'sass-loader',
        {
            loader: 'sass-resources-loader',
            options: {
                resources: [resolveResource('common.scss')] 
            }
        }
    ];
    if (options.extract) {
        return ExtractTextPlugin.extract({
            use: loaders,
            fallback: 'vue-style-loader'
        })
    } else {
        return ['vue-style-loader'].concat(loaders)
    }
}


//修改sass配置的调用为 generateSassResourceLoader()
sass: generateSassResourceLoader(),
scss: generateSassResourceLoader(),

//在 main.js 中全局引用 common.scss 文件,重启服务
import './style/common.scss'

//局部页面引用:
<style lang="scss" scoped></style>

3.配置axios

npm install --save axios
npm install --save qs
//main.js引用
import axios from 'axios'
Vue.prototype.$axios= axios
axios.defaults.baseURL = 'http://47.94.216.215'
//请求头拦截配置
axios.interceptors.request.use((config) => {
  if(localStorage.token != undefined){
    config.headers['token'] = localStorage.token;
  }
  return config;
}, (error) => {
  return Promise.reject(error);
});
//响应状态拦截
axios.interceptors.response.use((response) => {
  console.log("请求成功" + response.data.code)
  return response;
}, (error) => {
  console.log("出现跨域问题,不返回状态")
  console.log(error);
  return Promise.reject(error);
});

import qs from 'qs'
Vue.prototype.$qs = qs

this.$axios.post(url, 
    this.$qs.stringify({
        mobile: '15210919778',
        password: '111111',
    })
).then(function (response) {

});

4.配置ydui ui框架

npm install vue-ydui --save

//如果需要使用rem单位,则需在html页面引入ydui.flexible.js,按需引入单个组件,另需导入重置基础样式(其未包含任何组件样式),即在入口文件 main.js 中如下配置:
//main.js   
import 'vue-ydui/dist/ydui.rem.css';
import 'vue-ydui/dist/ydui.base.css';
//index.html
<script src="//unpkg.com/vue-ydui/dist/ydui.flexible.js"></script>
//全局引入
import { Confirm, Alert, Toast, Notify, Loading } from 'vue-ydui/dist/lib.rem/dialog';
Vue.prototype.$dialog = {
    confirm: Confirm,
    alert: Alert,
    toast: Toast,
    notify: Notify,
    loading: Loading,
};
//按需引入
import {Button, ButtonGroup} from 'vue-ydui/dist/lib.rem/button';
import {InfiniteScroll} from 'vue-ydui/dist/lib.rem/infinitescroll';
import {ListTheme, ListItem, ListOther} from 'vue-ydui/dist/lib.rem/list';

Vue.component(ListTheme.name, ListTheme);
Vue.component(ListItem.name, ListItem);
Vue.component(ListOther.name, ListOther);
Vue.component(Button.name, Button);
Vue.component(ButtonGroup.name, ButtonGroup);
Vue.component(InfiniteScroll.name, InfiniteScroll);

5.配置ui框架 vux

npm install --save vux
npm install vux-loader --save-dev
const vuxLoader = require('vux-loader')

6. npm 发布 自己的包(详情)

    vue init webpack-simple packname;
    //src创建一个文件夹lib ,放各个.vue组件;
    //.vue编写各个组件
    export default {
        name:'chanyeyunFooter',
    }
    //src创建一个文件index.js 作为入口文件;
    //index.js
    import chanyeyunHeader from './lib/chanyeyun-header.vue'
    import chanyeyunFooter from './lib/chanyeyun-footer.vue'
    const chanyeyun = {
         install(Vue,options){
              Vue.component(chanyeyunHeader.name,chanyeyunHeader);
              Vue.component(chanyeyunFooter.name,chanyeyunFooter);
         }
    }

    if (typeof window !== 'undefined' && window.Vue) { 
        window.Vue.use(chanyeyun) 
    }
    export default chanyeyun

    //模拟引入 查看效果
    import chanyeyunUi from './index.js' 
    Vue.use(chanyeyunUi)

    //webpack模拟
    entry: './src/main.js',
    output: {
        path: path.resolve(__dirname, './dist'),
        publicPath: '/dist/',
        filename: 'build.js'
    },

    //npm  run build 前修改 webpack.config.js,入口文件修改为index.js
    entry: './src/index.js',
    output: {
        path: path.resolve(__dirname, './dist'),
        publicPath: '/dist/',
        filename: 'vue-chanyeyun.js',   //打包生成文件的名字
        library:'Chanyeyun',    //reqire引入的名字
        libraryTarget:'umd',
        umdNamedDefine:true
    },

    //上传包之前修改package.json 文件
    "name": "chanyeyun-ui",   //包名
    "main": "dist/vue-chanyeyun.js",   //dist打包后地址
    "private": false,
    "repository": { 
        "type": "git",
        "url": "http://116.196.109.204/nana/chanyeyun-ui.git"     //git仓库地址
    },

 
   //  npm账号登录cmd
   npm login 
   baina   *nana*523862!    495964946@qq.com

    // npm发布
    npm publish .  
   
    //使用安装  npm install chanyeyun-ui --save   (包名)
    //main.js引用    
    import chanyeyunUi from 'chanyeyun-ui' 
    Vue.use(chanyeyunUi)

   //页面使用
   <chanyeyun-footer></chanyeyun-footer>

7.fastclick ,处理移动端click事件300毫秒延迟

npm install fastclick -S
//main.js引用
import FastClick from 'fastclick'
FastClick.attach(document.body);

8.vue-lazyload 图片懒加载处理

npm install vue-lazyload --save-dev
//main.js引用
import VueLazyload from 'vue-lazyload'
Vue.use(VueLazyload,{
      error:'./static/error.png',
      loading:'./static/loading.jpg'
})
//使用
<img    v-lazy="item.img">

9.vue-clipboards 复制功能

npm install vue-clipboards --save 
//main.js引用
import VueClipboards from 'vue-clipboards';
Vue.use(VueClipboards);
//使用copyData复制的data数据,handleSuccess复制成功函数,handleError复制失败函数
<button v-clipboard="copyData" @success="handleSuccess" @error="handleError">复制</button>

10 vue压缩上传图片lrz

npm install --save lrz

<template>
    <div>
        <h5 class="content-header"> </h5>
        <div class="image-list">
            <div style="text-align:center" ref="divGenres" class="list-default-img" v-show="isPhoto" @click.stop="addPic">
                <img src="../images/add.jpg"> 
                <input type="file" accept="image/jpg,image/png,image/jpeg,image/gif" capture="camera" @change="onFileChange" style="display: none;">
            </div>
            <ul class="list-ul" v-show="!isPhoto">
                <li class="list-li " v-for="(iu, index) in imgUrls">
                    <a class="list-link" @click='previewImage(iu)'>
                        <img :src="iu">
                    </a>
                    <span class="list-img-close" @click='delImage(index)'></span>
                </li>
            </ul>
        </div>
        <div class="add-preview" v-show="isPreview" @click.self="closePreview">
            <img :src="previewImg">
        </div>
        <div style="font: 0px/0px sans-serif;clear: both;display: block"> </div>
    </div>
</template>
<script>
    import lrz from "lrz"
    export default {
        data: function () {
            return {
                show: false,
                imgUrls: [],
                urlArr: [],
                isPhoto: true,
                btnTitle: '',
                isModify: false,
                previewImg: '',
                isPreview: false,
                lat:0,
                lng:0,
            }
        },
        watch: {
            imgUrls: 'toggleAddPic'
        },
        methods: {
            toggleAddPic: function () {
                let vm = this;
                if (vm.imgUrls.length >= 1) {
                    vm.isPhoto = false;
                } else {
                    vm.isPhoto = true;
                }
            },
            addPic: function (e) {
                let els = this.$refs.divGenres.querySelectorAll('input[type=file]')
                    els[0].click()
                return false
            },
            //选择图片
            onFileChange: function (e) {
                var files = e.target.files || e.dataTransfer.files;
                if (!files.length) return;
                this.createImage(files, e);
            },
            //图片压缩转为base64;
            createImage: function (file, e) {
                let vm = this;
                lrz(file[0], {
                    width: 480
                }).then(function (rst) {
                    vm.imgUrls.push(rst.base64);

                    let urlArr = [],
                    imgUrls = vm.imgUrls;
        
                    for (let i = 0; i < imgUrls.length; i++) {
                        if (imgUrls[i].indexOf('file') == -1) {
                            urlArr.push(imgUrls[i].split(',')[1]);
                        } else {
                            urlArr.push(imgUrls[i]);
                        }
                    }
                    console.log(urlArr.length);
                    console.log(urlArr[0]);
                }).always(function () {
                    // 清空文件上传控件的值
                    e.target.value = null;
                });
            },
            delImage: function (index) {
                let vm = this;
                vm.imgUrls.splice(index, 1);
            },
            previewImage: function (url) {
                let vm = this;
                vm.isPreview = true;
                vm.previewImg = url;
            },
            closePreview: function () {
                let vm = this;
                vm.isPreview = false;
                vm.previewImg = "";
            }
        
        }
    }
</script>
<style>
    .list-default-img{
        padding:0 20px;
    }
    .list-default-img img{
        width: 100%;
        height:200px;
    }

    .list-ul{
        padding: 0 20px;
    }
    .list-li {
        width: 100%;
        height:200px;
        position: relative;
    }
    .list-link img {
        width: 100%;
        height: 100%;
    }
    .list-img-close {
        background: #ffffff url(../images/del.jpg) no-repeat right top;
        border-color: #ff4a00;
        background-position: center;
        background-size: 35px 35px;
        display: block;
        float: left;
        width: 10px;
        height: 10px;
        position: absolute;
        top: 0;
        right: 0%;
        margin-top: 0px;
        margin-left: 0px;
        padding: 8px;
        z-index: 5;
        border-radius: 5px;
        text-align: center;
    }
    .add-img {
        display: block;
        background-image: url('../images/add.jpg');
        background-repeat: no-repeat;
        width: 100px;
        height: 100px;
        background-position: center;
        background-size: 100px 100px;
    }
    .add-preview{
        position: absolute;
        top:0;
        left:0;
        background-color: rgba(0,0,0,0.8);
        z-index:5;
        width: 100%;
        height: 100%;
        padding:0 20px;
    }
    .add-preview img{
        width: 100%;
        position: relative;
        top:50%;
        left:50%;
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }
</style>

11获取当前位置信息,腾讯地图

<iframe id="geoPage" width=0 height=0 frameborder=0  style="display:none;" scrolling="no" src="https://apis.map.qq.com/tools/geolocation?key=OB4BZ-D4W3U-B7VVO-4PJWW-6TKDJ-WPB77&referer=myapp">
</iframe>
mounted(){
    this.Tmap()
},
Tmap() {
     window.addEventListener('message', function(event) {
      var loc = event.data;
      this.lat = loc.lat;
      this.lng = loc.lng;
      console.log(this.lat);
      console.log(this.lng);
}, false);  

12.父组件给子组件传值

//父组件
import Icon from '../components/XXX.vue'
components:{
    Icon,
},
<Icon  color = 'red' ></Icon>   //父组件定义 子组件接收值并传值 
 //子组件
props:{
    color:String,
    default: '#409eff'
} 

13.子组件给父组件传值

//子组件向上抛出一个事件
this.$emit('success', 值);
//父组件
<Icon  color = 'red'  @success="getIcon"></Icon>
 getIcon(icon){
     this.icon = icon;
     console.log(this.icon);
}

14.父组件调用子组件方法

父组件:

setTimeout(function(){
    this.$refs.customer.typeChange();   //子组件方法
},1000)

15.vue dom属性变量拼接

:session-from="'sobot|['+userInfo.nickName+']|['+userInfo.avatarUrl+']|['+params+']|transferAction=['+transferAction+']'"

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,968评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,601评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,220评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,416评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,425评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,144评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,432评论 3 401
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,088评论 0 261
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,586评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,028评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,137评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,783评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,343评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,333评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,559评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,595评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,901评论 2 345

推荐阅读更多精彩内容