Skip to content

Commit

Permalink
Merge pull request #95 from abes-esr/ITEM-146-change-title
Browse files Browse the repository at this point in the history
Changement du titre + favicon
  • Loading branch information
pierre-maraval authored Jul 12, 2024
2 parents 48aa537 + 46cebef commit 6272d86
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "vuetify-project",
"name": "Item",
"version": "0.0.0",
"scripts": {
"dev": "vite",
Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
6 changes: 5 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</template>

<script setup>
import {ref} from 'vue'
import { onBeforeMount, ref } from 'vue';
import Header from '@/components/Structure/Header.vue'
import Navbar from '@/components/Structure/Navbar.vue'
import Footer from '@/components/Structure/Footer.vue'
Expand All @@ -42,6 +42,10 @@ import {HttpStatusCode} from 'axios'
const errorStack = ref([])
const drawer = ref(false)
onBeforeMount(() => {
document.title = 'Item';
})
function addError(error) {
let newError = {
message: 'Erreur',
Expand Down

0 comments on commit 6272d86

Please sign in to comment.