All Questions
11 questions
1
vote
1
answer
1k
views
vue app will not grow to 100% height on media query
Hi all I am using my vue router for a few pages, and my main container on the page will not set the height to 100% using this media query
@media screen and (min-width: 700px) {
#signinContainer {
...
3
votes
3
answers
3k
views
Cannot Remove Underline From Vue router-link
I think I tried almost everything trying to remove underline from router-link.
This is my code:
<router-link :to="{name: 'Plan'}">
<div>Plan Your Trip</div>
<...
0
votes
1
answer
46
views
How to highlight at DOM the last row added to state variable with VueJS
I am making a small CMS with Vue-Router and Firebase. The CMS has a section with the post list. When the user press the button to create new post, open a child component with the editor.
When the ...
0
votes
1
answer
305
views
how to keep css style by using vue
I am learning vue and trying to build a website by using vue. And I set two navigation tabs in navigation bar.
Here is the router config file:
import Vue from 'vue'
import Router from 'vue-router'
...
5
votes
2
answers
2k
views
How can I implement mouse over on a <ul> in VueJS?
Could any one help in implementing a mouse over function for UL,
I have a set of UL tags in my template which uses the same class, but when I am trying to implement mouseover(changes border color on ...
1
vote
0
answers
644
views
Style won't load when I press back button (VueJS)
I'm working on a web project (vuejs) which has some css styles loaded in.
Everything is working great except when I press the back button (mouse/keyboard doesn't matter) to go to previous page, then ...
2
votes
1
answer
955
views
Vue-Router only works on some routes
My vue-router routes the URL on all menu buttons correctly, but does not show each Vue component properly. A demonstration can be found here.
Inside of my HTML (I am using Vuefy)
<div class="...
61
votes
12
answers
127k
views
VueJs vue-router linking an external website
This may be simple, but I've looked over documentation and can't find anything about it. I want to have my 'github' link redirect to say, github.com. However, its just appending 'https://github.com' ...
0
votes
2
answers
1k
views
Vuejs SPA need to load css for ltr and rtl based on language
I'm building a website using Vue but I have 2 separate css files, 1 for normal ltr and one for rtl.
Now according to the URL xyz.com/en or xyz.com/ar I can serve the appropriate file, based on server-...
3
votes
3
answers
7k
views
How to apply Vue.js scoped styles to components loaded via view-router?
How can I apply Vue.js scoped styles to components loaded via <view-router>.
Here is my code:
<template>
<div id="admin">
<router-view></router-view>
</div&...
46
votes
10
answers
82k
views
vue-router : how to remove underline from router-link
This results in an underlined link:
<li><router-link to="/hello">Hello</router-link></li>
My understanding is that the router-link element generates an a tag.
I've tried ...