diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-05 00:01:10 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-05 00:01:10 +0530 |
commit | f1ada5b3292d45fed7eb808d8cc4d98573636e9b (patch) | |
tree | 36e4865ddcc2ed89ed7119f262b519a7c90699c2 /src/components/items_table.vue | |
parent | e7c9922d36ea82a54579c1f9e6633d4ad7ad3e74 (diff) |
using dark mode if system is in dark modev0.0.2
Diffstat (limited to 'src/components/items_table.vue')
-rw-r--r-- | src/components/items_table.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/items_table.vue b/src/components/items_table.vue index 5d689e5..187ee0f 100644 --- a/src/components/items_table.vue +++ b/src/components/items_table.vue @@ -1,4 +1,4 @@ -<script setup lang="ts"> +<script setup lang="js"> import { ref, onMounted } from 'vue' import { RouterLink } from 'vue-router' import axios from 'axios' @@ -65,7 +65,7 @@ onMounted(() => { </div> </div> - <table v-else class="table table-light table-striped table-hover"> + <table v-else class="table table-striped table-hover"> <thead> <tr> <th scope="col">#</th> |