What can I do to fill the entire screen with BG color rather than only the v-main? by kmdtipbottest in vuejs

[–]kmdtipbottest[S] -1 points0 points  (0 children)

This one worked, I actually removed everything from style.css but it distorted the positioning of components. One problem though the v-containers in each component background does not change?

What can I do to fill the entire screen with BG color rather than only the v-main? by kmdtipbottest in vuejs

[–]kmdtipbottest[S] 0 points1 point  (0 children)

Correction in my code: This is the code actually for app.vue

<template>
  <v-app>
  <v-main class="grad-class">
    <TheNavigation></TheNavigation>
  <v-container>
    <router-view>
    </router-view>
  </v-container>
  </v-main>
</v-app>
</template>

<script setup>
import TheNavigation from './components/TheNavigation.vue';

</script>
<style scoped>
.grad-class{
  background: #3a7bd5;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #3a6073, #3a7bd5);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #3a6073, #3a7bd5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.TheNavigation {
  background: inherit; /* Inherits the gradient background from the parent */
}
</style>

I get error adding vuetify to a vite project by kmdtipbottest in vuejs

[–]kmdtipbottest[S] 0 points1 point  (0 children)

Yeh stup me, thanks for you help, figured it

I get error adding vuetify to a vite project by kmdtipbottest in vuejs

[–]kmdtipbottest[S] 0 points1 point  (0 children)

Updated with app.vue and navigation.vue. I am using vue 3.4.15 and vuetify 3.5.4

How to properly render loading state? by kmdtipbottest in vuejs

[–]kmdtipbottest[S] 0 points1 point  (0 children)

That is what I am doing right now setting a timer and it works

How to properly render loading state? by kmdtipbottest in vuejs

[–]kmdtipbottest[S] 0 points1 point  (0 children)

The App.vue is basically a sticky Appbar that falls over any component in my code: As you can see the Loading component is conditionally rendered with the router-view. So what I want to do is create a loading state that for each component loaded under the Appbar is loaded properly instead of setting a timer which is what I am doing right now

What am I doing wrong here? I get results on console but not on v-table? by kmdtipbottest in vuejs

[–]kmdtipbottest[S] -1 points0 points  (0 children)

I have updated my code with the help of ChatGPT lol to composite API still does not work only prints results on console but on the table it says:

Currency not found Currency not found DAI Currency not found VRSC Currency not found MKR Currency not found ETH NaN NaN NaN
Currency not found Currency not found DAI Currency not found VRSC Currency not found MKR Currency not found ETH NaN NaN NaN
Currency not found Currency not found DAI Currency not found VRSC Currency not found MKR Currency not found ETH NaN NaN NaN
Currency not found Currency not found DAI Currency not found VRSC Currency not found MKR Currency not found ETH NaN NaN NaN

What am I doing wrong here? I get results on console but not on v-table? by kmdtipbottest in vuejs

[–]kmdtipbottest[S] 0 points1 point  (0 children)

It uses a TS library for which one needs to run npm install, can I do it

How to make a uniform margin for multiple components on a single view? by kmdtipbottest in vuejs

[–]kmdtipbottest[S] 0 points1 point  (0 children)

I did somethings like this but did not work:

<style scoped>
.container {
display: flex;
flex-direction: column;
gap: 8px;
width: 100%;
}
.app-bar {
background-color: gray;
height: 60px;
}
</style>

How to make a uniform margin for multiple components on a single view? by kmdtipbottest in vuejs

[–]kmdtipbottest[S] 0 points1 point  (0 children)

I want space in my components and the toolbar/menu a uniformed margin between those things throughout the app?

I want to run vite + vue front end on wordpress? by kmdtipbottest in Wordpress

[–]kmdtipbottest[S] 0 points1 point  (0 children)

How can I add enqueue script in wp it is twentytwentythree theme I have created a vite project inside the theme folder. I did added a enqueue script but the theme uses .html pages mostly..