javaweb

作者: sunnylxs | 来源:发表于2019-07-08 16:32 被阅读0次

    https://www.cnblogs.com/niceyoo/p/10111656.html:Vue中运行指南避坑;只有在 package.json scripts 配置了,你才能 run 的,所以不是所有的项目都能 npm run dev/build。

    Vue中import引入模块路径时的@符:https://www.cnblogs.com/niceyoo/p/10106035.html

    ES6 模块主要有两个功能:export 和 import

    resolve: {

        // 自动补全的扩展名

        extensions: ['.js', '.vue', '.json'],

        // 默认路径代理

        // 例如 import Vue from 'vue',会自动到 'vue/dist/vue.common.js'中寻找

        alias: {

            '@': resolve('src'),

            '@config': resolve('config'),

            'vue$': 'vue/dist/vue.common.js'

        }

    }

    相关文章

      网友评论

          本文标题:javaweb

          本文链接:https://www.haomeiwen.com/subject/ozuqzqtx.html