Vue相关

官方文档:https://cn.vuejs.org

Uploading Files With VueJS and Axios

读懂原理:

视频教程:vue.js入门教程

注意事项

  • webpack结合vue的时候,less中的元素重名会导致渲染错误。可以通过添加前缀来区别:
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    .a{
    .container {
    background:#fff;
    }

    .nihao {
    color:#2f0;
    background:#c38;
    }
    }

    .b{
    .container {
    background:#000;
    }

    .nihao {
    color: #333;
    }
    }

通过scoped来避免全局污染

1
2
3
4
<style lang="less" scoped>
@import "../../styles/product-list.less";
</style>

Vue 固定滚动位置的处理办法. - 前端 - 掘金