Laravel 5.3.10 + Vue.js 2.0.1上的“无法安装组件”错误

时间:2016-10-07 05:26:25

标签: javascript laravel-5 vue.js

我一直在研究Laravel + Vue.js. 我想在Laravel Blade模板上开发Vue组件, 但是当我尝试这样做时,发生了以下错误,并且效果不佳 *为了检查,我只编写了一个Vue组件的最小代码。

我参考以下文章尝试了各种各样的事情 https://github.com/vuejs/vue-loader/issues/287

发生的问题和错误消息

[Vue warn]: Failed to mount component: template or render function not defined. (found in anonymous component - use the "name" option for better debugging messages.)

index.blade.php

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
    <div id="app"></div>
<script src="js/bundle.js"></script>
</body>
</html>

app.js

import Vue from 'vue'
import InputText from './components/InputText.vue'

new Vue({
    render(h) {
      return h(InputText)
    }
}).$mount('#app')

InputText.vue

<template>
    <input class="input-text" type="text">
</template>

<script>
export default {
}
</script>

<style lang="sass" scoped>
</style>

gulp.file.js

const elixir = require('laravel-elixir');
require('laravel-elixir-vue-2');

elixir(mix => {
    mix.sass('**/*.scss')
       .webpack('')
});

webpack.config.js

const webpack = require('webpack');

module.exports = {
  entry: {
    bundle: './resources/assets/js/app.js',
  },
  output: {
    filename: '[name].js',
  },
  resolve: {
    root: __dirname,
    extensions: ['', '.js', '.vue'],
    modulesDirectories: ['node_modules'],
    alias: {
      vue: 'vue/dist/vue.js',
    },
  },
  module: {
    loaders: [
      {
        test: /\.vue?$/,
        loader: 'vue-loader',
      },
      {
        test: /\.js$/,
        loader: 'babel',
        exclude: /node_modules/,
      },
      {
        test: /\.html$/,
        loader: 'vue-html',
      },
      {
        test: /\.(jpg|png)$/,
        loader: 'url-loader?limit=10000',
      },
    ],
  },
  vue: {
    loaders: {
      scss: 'style!css!sass',
    },
  },
};

的package.json

"devDependencies": {
    "babel-core": "^6.17.0",
    "babel-loader": "^6.2.5",
    "babel-plugin-transform-runtime": "^6.15.0",
    "babel-preset-es2015": "^6.16.0",
    "babel-runtime": "^6.11.6",
    "laravel-elixir": "^6.0.0-11",
    "laravel-elixir-browsersync-official": "^1.0.0",
    "laravel-elixir-vue-2": "^0.2.0",
    "laravel-elixir-webpack-official": "^1.0.6",
    "vue": "^2.0.1",
    "vue-loader": "^9.5.1",
    "webpack": "^1.13.2"
    ...
}

补充信息

Laravel 5.3.10
Node.js 6.4.0
npm 3.9.3

2 个答案:

答案 0 :(得分:1)

您需要注册InputText组件才能在根组件中使用它。这是使用ES2015的简写。

import Vue from 'vue'
import InputText from './components/InputText.vue'

new Vue({
    components: {
        InputText
    },

    render(h) {
      return h(InputText)
    }
}).$mount('#app')

答案 1 :(得分:1)

esModule: true loadersvue下的webpack.config.js旁边添加const Vue = require('vue'),您应该好好去。

或者,您可以使用import Vue from 'vue'代替default尝试从组件中生成的模块加载export default foo导出,但除非您告诉vue-loader生成兼容代码。

实际上,规范之间存在更一般的不兼容性,其中module.exports = foorequire的含义不同。当你{ default: foo }前者时,它会给你一个对象foo而后者会返回imgClick = ({nativeEvent: {locationX, locationY}}) => { if (ImageService.inBounds(image, locationX, locationY)) { // do your event handling here } } 未封装的对象。

这就是为什么你必须告诉vue-loader,如果你使用的是其中一个规范。