mirror of
https://github.com/DavidHDev/vue-bits.git
synced 2026-03-09 00:19:31 -06:00
Add prettier config, format codebase
This commit is contained in:
@@ -1,20 +1,24 @@
|
||||
<template>
|
||||
<main class="app-container">
|
||||
<Header />
|
||||
|
||||
<section class="category-wrapper">
|
||||
<Sidebar />
|
||||
|
||||
<div class="category-page">
|
||||
<router-view />
|
||||
</div>
|
||||
</section>
|
||||
<Toast position="bottom-right"
|
||||
|
||||
<Toast
|
||||
position="bottom-right"
|
||||
:closeButtonProps="{ style: { right: '0', margin: '0', outline: 'none', border: 'none' } }"
|
||||
:pt="{
|
||||
message: {
|
||||
style: {
|
||||
borderRadius: '10px',
|
||||
border: '1px solid #142216',
|
||||
backgroundColor: '#0b0b0b',
|
||||
backgroundColor: '#0b0b0b'
|
||||
}
|
||||
},
|
||||
messageContent: {
|
||||
@@ -27,11 +31,12 @@
|
||||
display: 'none'
|
||||
}
|
||||
}
|
||||
}" />
|
||||
}"
|
||||
/>
|
||||
</main>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import Header from '../navs/Header.vue';
|
||||
import Sidebar from '../navs/Sidebar.vue';
|
||||
</script>
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user