7 questions
2
votes
1
answer
306
views
How to import ES6 module in Vue file that is loaded by httpVueLoader?
I'm trying to use urlJoin in a Vue single file component. I don't use a compiler and to load the Vue file I use httpVueLoader.
When I do this:
<script>
import urlJoin from 'https://cdn.skypack....
1
vote
1
answer
125
views
Slot stops after certain child element in Vue2
I have two simple vue components and want to use one in the default slot of the other. For some reason it takes only the first element but does not show anything after that. If I put standard before ...
0
votes
1
answer
186
views
Use scss on vue Single file component without cli or webpack
I'm developing a PHP based system where I cannot use webpack, NPM or the Vue CLI, my page has several components that are loaded on real-time using httpVueLoader, one example of such component is as ...
1
vote
1
answer
292
views
How to access vuetify in dynamic single file components using http-vue-loader?
I am trying to access vuetify inside a component I dynamically get from http-vue-loader. I received an error that says vuetify components weren't registered. I then try to import the needed ...
0
votes
1
answer
2k
views
How to use global variables in Vue JS components?
I'm trying to develop a web-app using Vue JS. Single File components(.vue files) is a nice way to create components but I don't want to use any node modules. And I found https://github.com/...
0
votes
1
answer
285
views
Minimalistic build setup for Vuejs without Webpack
I'm using http-vue-loader for loading Vue single file components in my project. The main reason is to skip Webpack and fully concetrate on ES6 and Vue. Unfortunatelly I cannot use import in SF ...
1
vote
1
answer
1k
views
Register Vue.js component dynamically from a string
I have a CRUD that enables me to write Vue.js component's code in the textarea like:
<template>
<div><p class='name-wrapper'>{{ model.name }}</p></div>
</template>
...