Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
2k views

I have several images or icons (.svg) and I would like to know what is the best way to use my svg as vuetify icons.
RZL XPTO's user avatar
0 votes
0 answers
183 views

I have an application made with cordova and vue2-google-maps. I have an application made with cordova and vue2-google-maps, retrieved from here: https://github.com/davidverriere/cordova-vuejs2-...
JG_GJ's user avatar
  • 805
0 votes
0 answers
772 views

I want to build v-list-group which will be have additional buttons. But those buttons should not activate/deactivate group list. I have made example: <div id="app"> <v-app id=&...
Mariusz's user avatar
  • 369
5 votes
4 answers
12k views

I have form with several text fields that's giving me no issues. But I have this file field Im unable to bind to my model. Any sujestions. <template> <v-form ref="form" @submit.prevent="...
Shawn Sonnier's user avatar
1 vote
0 answers
329 views

I am trying to use Vue Single File Components with a Gulp build system. Gulp should transform the files with Vueify and Babel, but neither of them are transforming arrow functions. package.json { ...
BishopZ's user avatar
  • 6,408
1 vote
1 answer
272 views

I am using Gulp, Browserify, Vueify and Babel to build my vue.js project. I cannot move to another building system, so Gulp it is. I recently updated from Babel 6 to Babel 7, due to a new addition in ...
ealef's user avatar
  • 554
0 votes
1 answer
226 views

In an app I am using browserify and vueify. I am trying to inject global scss file (with variables, mixins, colors etc..) into Vue to make it available for all components (instead to have the file ...
revy's user avatar
  • 4,817
1 vote
1 answer
2k views

I've got the following gulpfile.js: var gulp = require('gulp'), babelify = require('babelify'), browserify = require('browserify'), envify = require('envify/custom'), eslint = require('...
tg24's user avatar
  • 171
1 vote
1 answer
2k views

I have a scenario where there is a necessity that the users reload the vuejs app to get the latest vue app version when i update the whole application in the server including the backend APIs. ...
Husni Abdul Nazer's user avatar
2 votes
1 answer
4k views

I am trying to get the value of a select field in my Vue project. I have tried several things but a few of the things I still have links for are: https://codepen.io/johnjleider/pen/jwoNrG Get selected ...
whla's user avatar
  • 831
1 vote
1 answer
822 views

Full disclosure: I opened a question very similar to this when eliminating npm and node. You can find that question at: npm i and npm update breaking gulp, browserify builds . Albeit somewhat similar ...
TomJ's user avatar
  • 310
2 votes
0 answers
97 views

Is it possible to setup vueify this way, so it compiles single .vue files to corresponding .js files? For example: Input: my-component.vue <template> <div>{{ message }}</div> &...
SeregPie's user avatar
  • 1,253
0 votes
1 answer
116 views

Okay, so I've been trying my hand at compiling stuff with browserify and vueify and I've stumbled upon something strange. So first things first, I've been trying to get the browserify-simple example ...
Osuwariboy's user avatar
  • 1,385
0 votes
1 answer
94 views

I just now started with Vue.js, and this is the first time I'm trying to use Vueify and Browserify. I made this simple component to generate a table from a Json, however the div where my component ...
HeitorSaldanha's user avatar
1 vote
1 answer
345 views

I am trying to run my unit tests with Karma. I have calendar.tests.js file that looks a lot like this: import { handleSelectDay } from '../components/Calendar/index.vue' describe('Calendar', () => ...
Drew Larson's user avatar
10 votes
1 answer
4k views

I already use gulp in my workflow, and I don't currently use webpack or browserify, but it seems that compiling Vue 2.x components requires one or the other, there are no actively-maintained ...
richardtallent's user avatar
0 votes
1 answer
172 views

Current Version : Laravel 5.2 using only Browserify not Webpack I've already set up everything such as like this: In my resources/js/app.js window.Vue = require('vue'); new Vue({ el : '.row', ...
TheBAST's user avatar
  • 2,756
1 vote
0 answers
597 views

I am build a Chrome extension that uses Vuejs in several content pages, I am having hard time configure the gulpfile because I can not refernace files within main.js. the problem is that it can not ...
Mohammad Abu Musa's user avatar
4 votes
2 answers
3k views

fixed. The solution is to: pass through .transform(babelify) as well ensure all your .vue-file script elements look like <script type="text/javascript"> -- that type attribute must come before ...
roberto tomás's user avatar
0 votes
2 answers
1k views

i'm using a simple vue.js setup with browserify and vueify. following previous guidance, i also added aliasify as dependency in order to make use of template engine. here's my package.json file: { ...
Sombriks's user avatar
  • 3,680
1 vote
1 answer
1k views

I'm trying to use Vueify in my first Laravel project and I'm not sure as to why it isn't working. I've installed (via npm) both vueify and laravel-elixir-vueify modules. gulpfile.js const elixir = ...
Alec Gamble's user avatar
0 votes
1 answer
2k views

I've been working on porting a vue.js component from vue 1.0 to Vue 2.0 using Vueify. In the Starter resources it states: When you use vue-loader or vueify to import *.vue files, their parts are ...
craig_h's user avatar
  • 32.8k
6 votes
1 answer
9k views

Based on the Vuejs Documentation examples I am trying to do a simple treeview component where I can show a Chart of Accounts without any interection (no add no drag and drop... really simple). I have ...
Gustavo Bissolli's user avatar
0 votes
1 answer
1k views

How can I use Elixir + Vueify like the Vue-Hackernews sample? They use some command like this at the package.json .... "scripts": { "dev": "watchify -v -t vueify -e src/main.js -o build/build.js"...
Daniel Kuroski's user avatar