All Questions
363 questions
0
votes
0
answers
90
views
Why do I receive a console error saying I need to define props even though they are defined in the parent and the child?
I am building a website using Vue JS 3 and Laravel and when I try and implement my Index.vue component I receive these errors:
[Vue warn]: Missing required prop: "label"
[Vue warn]: Missing ...
-1
votes
1
answer
70
views
Images are displayed below the sidebar in the middle of the page and not from the top (Vue.Js)
I'm building a photo website with Vue.JS and encountering the problem mentioned in the titled. I've tried everything, and after two hours of back and forth with ChatGPT I've decided to come here.
This ...
1
vote
1
answer
498
views
How do I pass a prop as an argument in Vue.js
I am new to Vue and I am making a component that changes it's class property based on the style prop given by the parent component. When I try to invoke a substitution Vue does nothing
Here is "...
1
vote
1
answer
3k
views
Failed to mount app: mount target selector "#app" returned null
I just started to use Vue.js, I'm trying to trigger the muose click when I press the button. The message problem is: Failed to mount app: mount target selector "#app" returned null. This is ...
0
votes
0
answers
26
views
Fill Content of V-Container to screen
I have a page that is unnecessatily scrollable by a few pixel. I want to display the page with screen height so that everything is displayed without the option to scroll.
Here is what the page looks ...
0
votes
1
answer
44
views
How do you get styling props to work on specific elements in VueJs
I am creating a button and it needs to have multiple states (hover, focused, pressed and disabled).
I also need my default button to have a default size (large) and a smaller size (small). I am trying ...
2
votes
1
answer
33
views
When i set a v-for, props undefined
I'm doing a website of a League of Legends assist, and i have a component with five elements (one for each line). I had it setted without a v-for, and it worked perfect, but when i configured it with ...
0
votes
0
answers
75
views
interpolation not working in recursive vue component
I have two jasons that are linked by one of them with a key. One of the jasons contains a structure that needs to be rendered recursively. The same jason contains the data that is passed to data(). ...
0
votes
0
answers
93
views
Rendering Vue Components in HTML from a Database
I am using Spring in my backend and scraping news articles from websites for a personal project. I am getting everything I need via Jsoup, but I am at the point where I need to start retrieving all ...
0
votes
1
answer
58
views
How to make my side bar to look dynamic when page zoom is growing?
Code in "style" segment needs to be changed in that way that when I zoom browser to more than 100% or page is not opened on whole screen, i want to see only icons of side nav. This picture ...
1
vote
3
answers
202
views
How to make button to be visible whole time and not to work only on click?
<v-card :style="{ textAlign: 'left' }" class="basic-card pa-6"
:class="{ 'small-padding': !$vuetify.breakpoint.xl }"
elevation="0" flat :height=&...
0
votes
1
answer
357
views
Vue router scrolling to vue-view comp
I'm creating an application in Vue and I'd like all the main content to be on one page with the option to scroll to specific elements such as LandingPage then below Form, About ..etc.
Is there any way ...
1
vote
1
answer
440
views
button prev and next in stepper vue
I want to make buttons previously and next, but I a little not understand how its realized, because starting learning vue recently
I have methods which I should write this.activeindex < this....
2
votes
0
answers
47
views
Assigning a variable length to setInterval() on a per-case basis
I'm currently trying to adapt this project by Nutty7t into a more versatile simulation of Persona 5's SMS system. I have made progress given my previous experiences designing websites (in High School ...
4
votes
0
answers
961
views
How can I add a global stylesheet to Vue 3 Custom Elements?
I am trying to use defineCustomElement from Vue 3 to make Single File Components into custom elements.
However when I try to import a local stylesheet to the elements I get the error message: Refused ...