zoukankan      html  css  js  c++  java
  • vue小结2018-11-12

    1.

    Template下只能有一个总元素

     

    <template>

    <router-view/>

    </template>

    是对的

     

    <template>

    <div>111</div>

    <router-view/>

    </template>

    是不对的,只能有一个总元素,可以用div包起来

     

    2.

    build下的webpack.base.conf.js

     

    resolve: {

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

        alias: {

          'vue$': 'vue/dist/vue.esm.js',

          '@': resolve('src'),

          'components': resolve('src/components'),

        }

      },

    这里写components的路径

  • 相关阅读:
    BJDCTF-WP
    Python 每日一练(4)
    Python 每日一练(3)
    BUUCTF Crypto
    Python每日一练(1)
    Python 每日一练(2)
    oracle 组函数
    oracle 组函数
    oracle
    前端实战遇到问题
  • 原文地址:https://www.cnblogs.com/luziluck/p/10002653.html
Copyright © 2011-2022 走看看