laravel-elixir-vue-2 icon indicating copy to clipboard operation
laravel-elixir-vue-2 copied to clipboard

Laravel Elixir Vue 2.0 support plugin

Results 9 laravel-elixir-vue-2 issues
Sort by recently updated
recently updated
newest added

After elixir update to @6.0.0-15 I got this error: Elixir.ready(function () { ^ TypeError: Elixir.ready is not a function at Object. (C:\Users\motto\Desktop\project\node_modules\laravel-elixir-vue-2\index.js:3:8) at Module._compile (module.js:573:32) at Object.Module._extensions..js (module.js:582:10) at Module.load...

Starting from a blank directory, I did: npm install gulp npm install laravel-elixir-vue-2 npm install laravel-elixir Then I got this error: ``` > gulp /srv/elix2/node_modules/laravel-elixir-vue-2/index.js:4 Elixir.webpack.mergeConfig({ ^ TypeError: Cannot read...

I am building realtime chat using **laravel and vueJs** on the input field I am using **v-model** but it is not returning anything: Here is the code: Send export default...

i get this error message when i try to make a generator function `[15:53:13] Finished 'webpack' after 18 ms { [Error: ./~/buble-loader!./~/vue-loader/lib/selector.js?type=script&index=0!./resources/assets/js/modules/components/redaccion_documentos/documentos-redaccion-view.vue Module build failed: 74 : } 75 :...

When using `exports default { ... }`, `require('./components/Example.vue')` returns object with `default` key as content. ``` javascript export default { data() { return { counter: 0 } }, methods: {...

So i added this to my `webpack.config.js` ``` const ExtractTextPlugin = require("extract-text-webpack-plugin"); module.exports = { vue: { loaders: { js: 'buble-loader', scss: ExtractTextPlugin.extract({ loader: 'css-loader!sass-loader', fallbackLoader: 'vue-style-loader' }) } },...

Hi there. I am using vue-chartjs with the latest vue via laravel elixir with webpack and recently ran into some errors. while gulp works fine, gulp --production is causing errors....

gulpfile.js ``` const elixir = require('laravel-elixir'); require('laravel-elixir-vue-2'); // require('laravel-elixir-webpack-official'); require this not show the error elixir((mix) => { mix.webpack('app.js'); }); ``` app.js ``` import Vue from 'vue'; // import Vue...

After editing my package.json and gulp files properly to work with laravel-elixir-vue-2, I had to remove entirely the node modules directory and run npm install in order to get the...