美文网首页
工程中如何安装Vue框架

工程中如何安装Vue框架

作者: 新地球说着一口陌生腔调 | 来源:发表于2018-08-15 18:02 被阅读5次

    简单说下几个步骤:

    1、cd到web工程目录

    2 、npm init  执行后工程会生成 package.json 文件,  包含一下自己定义的配置信息 如下:description 、keywords 、author 等等

    package name: (untitled) 

    version: (1.0.0) 

    description: hhb测试vue

    entry point: (index.js) 

    test command: 

    git repository: 

    keywords: vue

    author: hhb

    license: (ISC)

    3、cnpm install vue --save  。注意如果不能识别cnpm命令则需要安装 cnpm环境 ,执行命令

    npm install -g cnpm --registry=https://registry.npm.taobao.org

    4、cnpm install vue-resource --save

    Ok 大功告成 !

    相关文章

      网友评论

          本文标题:工程中如何安装Vue框架

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