python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to change the border variant of a selected Bootstrap Vue card when clicked in v-for
I have my b-card and v-for showing and functioning mostly as desired, the one issue I'm running into is changing the border-variant of a card that is selected. So far I have tried nesting the v-for th...
AdamBrashear
Votes: 0
Answers: 2
Vuetify Table - Filter out specific row
I have a table
<v-simple-table class="condition-table">
<template v-slot:default>
<thead>
<tr>
<th class="text-left&q...
code-8
Votes: 0
Answers: 3
Vuetify Table - rendering column value based on a API response
I have this simple function
displayAttributeNameBasedOnId(id) {
axios.defaults.headers['Content-Type'] = 'application/json'
let data = {
$root: 'vc_rule_attribute',
op: 'read...
code-8
Votes: 0
Answers: 2
How to decode token in Vue.js?
I got a token after I successfully logged in. I need to be able to parse + decode/descrypt it to see the permission information inside that. How would I do that?
I tried
// token is accessible
var de...
code-8
Votes: 0
Answers: 1