vue-cli

修改于 2017年11月13号 main.js修改理解

vue.js学习内容

  1. vue.js框架介绍
  2. vue-cli 脚手架 搭建基本代码框架
  3. vue-router 管理插件管理路由
  4. vue-resource Ajax通信 axios通讯
  5. webpack 搭建工具
  6. es6+eslint eslint:es6代码风格检查工具
  7. 工程化 组件化 模块化
  8. 移动端常见的开发技巧
    • flex弹性布局
    • css stickyfooter
    • 酷炫的交互设计

1. vue.js介绍

  • Vue-cli是vue的脚手架工具

    1. 目录结构
    2. 本地调试
    3. 代码部署
    4. 热加载
    5. 单元测试
  • vue-cli的文件夹和文件分析

    • build/config 文件夹 webpack配置相关

    • node_modules npm包安装依赖

    • src 存放的项目源码

    • static 第三方静态资源 .gitkeep 当文件夹为空的时候也提交到github仓库

    • .babelrc babel转换

      // babel的配置文件
      {
        "presets": ["es2015", "stage-2"],  //预设插件,es2015babel预设需要安装的插件  stage-(0-3) 
        "plugins": ["transform-runtime"], //装换es6
        "comments": false  //不支持注释
      }
      
    • .editorconfig 编辑器设置

      root = true
      
      [*]
      charset = utf-8
      indent_style = space  //缩减方式  空格
      indent_size = 2
      end_of_line = lf
      insert_final_newline = true
      trim_trailing_whitespace = true
      
    • .eslintignore 忽略eslint检查文件

      build/*.js
      config/*.js
      
      // 忽略build和config文件的检查
      
    • .eslintrc.js eslint配置

      module.exports = {
        root: true,
        parser: 'babel-eslint',
        parserOptions: {
          sourceType: 'module'
        },
        // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
        extends: 'standard',
        // required to lint *.vue files
        plugins: [
          'html'
        ],
        // add your custom rules here  修改规则  配置为0的话就是不用这个规则
        'rules': {
          // allow paren-less arrow functions
          'arrow-parens': 0,
          // allow async-await
          'generator-star-spacing': 0,
          // allow debugger during development
          'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0  //开发环境允许debugger,正式环境不可以
        }
      }
      
    • .gitignore 提交的时候忽略的目录

    • index.html 入口文件

  • 代码编译过程

    1. 路口根目录下面index.html

      <!DOCTYPE html>
      <html>
        <head>
          <meta charset="utf-8">
          <title>sell</title>
        </head>
        <body>
          <app></app>  
          <!-- built files will be auto injected -->
        </body>
      </html>
      <!-- js和css动态的插入到页面  -->
      
    2. main.js 入口js文件 src下面的main.js

       import Vue from 'vue'
       import App from './App'
      
       Vue.config.productionTip = false
      
       /* eslint-disable no-new */
       new Vue({
           el: '#app',
           template: '</App>',
           components: { App }
       })
      
      //绑定dom元素#app, 然后替换成template中的模板<App></App>
      //  注册组件,让App 自定义元素可以使用  
      
    3. App.vue模块

      每一个组建分三个部分 1. template 2. script 3. style

      <template>
        <div id="app">
          ![](./assets/logo.png)
          <hello></hello>  <!--下面的script components定义了自定义的标签-->
          <p>
            Welcome to your Vue.js app!
          </p>
          <p>
            To get a better understanding of how this boilerplate works, check out
            <a href="http://vuejs-templates.github.io/webpack" target="_blank">its documentation</a>.
            It is also recommended to go through the docs for
            <a href="http://webpack.github.io/" target="_blank">Webpack</a> and
            <a href="http://vuejs.github.io/vue-loader/" target="_blank">vue-loader</a>.
            If you have any issues with the setup, please file an issue at this boilerplate's
            <a href="https://github.com/vuejs-templates/webpack" target="_blank">repository</a>.
          </p>
          <p>
            You may also want to checkout
            <a href="https://github.com/vuejs/vue-router/" target="_blank">vue-router</a> for routing and
            <a href="https://github.com/vuejs/vuex/" target="_blank">vuex</a> for state management.
          </p>
        </div>
      </template>
      
      <script>
      import Hello from './components/Hello'
      
      export default {
        components: {
          Hello  <!-- 定义<hello></hello>标签 -->
        }
      }
      </script>
      
      <style>
      html {
        height: 100%;
      }
      
      body {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
      }
      
      #app {
        color: #2c3e50;
        margin-top: -100px;
        max-width: 600px;
        font-family: Source Sans Pro, Helvetica, sans-serif;
        text-align: center;
      }
      
      #app a {
        color: #42b983;
        text-decoration: none;
      }
      
      .logo {
        width: 100px;
        height: 100px
      }
      </style>
      
      // hello.vue
      <template>
        <div class="hello">
          <h1>{{ msg }}</h1>
        </div>
      </template>
      
      <script>
      // 导出模块 vue会处理导出相应的样式,模版,数据 
      export default {
        data () {
          return {
            msg: 'Hello Vue!'
          }
        }
      }
      </script>
      
      <!-- Add "scoped" attribute to limit CSS to this component only -->
      <style scoped>
      h1 {
        color: red;
      }
      </style>
      

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

推荐阅读更多精彩内容