python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
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
Vuetify Table - rendering column value based on a condition
I have a vuetify table and one of the columns is url. I need to add logic to either display URL or URL Group name. I can tell that based on the property of my rules array. If my rules[i].urlGroup != ...

code-8
Votes: 0
Answers: 1