24 questions
1
vote
1
answer
2k
views
Is it possible to use my .svg icons in vue3 and vuetify?
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.
0
votes
0
answers
183
views
Error: Plugin/Preset files are not allowed to export objects, only functions in vueify-build
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-...
0
votes
0
answers
772
views
Additional buttons in v-list-group
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=&...
5
votes
4
answers
12k
views
Vue Vuetify: Invalid prop: custom validator check failed for prop "value". found in ---> <VFileInput>
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="...
1
vote
0
answers
329
views
Babelify not transforming arrow function in Vue Components
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
{
...
1
vote
1
answer
272
views
Vueify and Babel 7
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 ...
0
votes
1
answer
226
views
browserify/vueify: inject global scss file in all components
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 ...
1
vote
1
answer
2k
views
'import' and 'export' may appear only with 'sourceType: module'
I've got the following gulpfile.js:
var gulp = require('gulp'),
babelify = require('babelify'),
browserify = require('browserify'),
envify = require('envify/custom'),
eslint = require('...
1
vote
1
answer
2k
views
How can you reload vuejs after application update on server
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.
...
2
votes
1
answer
4k
views
How can I get the value of v-select field on form submit?
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 ...
1
vote
1
answer
822
views
gulp builds incomplete when building new components
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 ...
2
votes
0
answers
97
views
vueify+node: compile separate .vue files
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>
&...
0
votes
1
answer
116
views
changing browserify-shim name causes compilation error
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 ...
0
votes
1
answer
94
views
Component model from Vueify is empty
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 ...
1
vote
1
answer
345
views
Running Karma tests with VueJS single file component using Vueify
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', () => ...
10
votes
1
answer
4k
views
How do I get a simple Vue compilation going in Gulp?
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 ...
0
votes
1
answer
172
views
Vue 2.2.2 doesn't display the data to the View
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',
...
1
vote
0
answers
597
views
Gulp task to configure VueJS
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 ...
4
votes
2
answers
3k
views
vueify (in gulp task) with babel transform of vue files
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 ...
0
votes
2
answers
1k
views
vueify: Failed to mount component: template or render function not defined
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:
{
...
1
vote
1
answer
1k
views
Laravel using Vueify
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 = ...
0
votes
1
answer
2k
views
Using Vueify for components with the runtime-only build in Vue.js
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 ...
6
votes
1
answer
9k
views
Vuejs recursive component on Vueify
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 ...
0
votes
1
answer
1k
views
How can I use Elixir + Vueify?
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"...