Blame view

node_modules/vue-template-compiler/index.js 732 Bytes
2a09d1a4   liuqimichale   添加宜春 天水 宣化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  try {
    var vueVersion = require('vue').version
  } catch (e) {}
  
  var packageName = require('./package.json').name
  var packageVersion = require('./package.json').version
  if (vueVersion && vueVersion !== packageVersion) {
    throw new Error(
      '\n\nVue packages version mismatch:\n\n' +
      '- vue@' + vueVersion + '\n' +
      '- ' + packageName + '@' + packageVersion + '\n\n' +
      'This may cause things to work incorrectly. Make sure to use the same version for both.\n' +
      'If you are using vue-loader@>=10.0, simply update vue-template-compiler.\n' +
      'If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump ' + packageName + ' to the latest.\n'
    )
  }
  
  module.exports = require('./build')