Skip to content

Commit

Permalink
フォーマットを適用
Browse files Browse the repository at this point in the history
  • Loading branch information
ErrorSyntax1 committed Dec 3, 2024
1 parent d5cb159 commit b12035a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/NavigationBar/NavigationBar.vue
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<script lang="ts" setup>
import {defineModel} from 'vue'
import { defineModel } from 'vue'
import NavigationLinks from './NavigationLinks.vue'
import NavigationBarFooter from './NavigationBarFooter.vue'
import Icon from '../UI/Icon.vue';
import Icon from '../UI/Icon.vue'
const a = defineModel<boolean>({required: true})
const a = defineModel<boolean>({ required: true })
</script>

<template>
<nav :class="$style.container">
<button
style="width: fit-content;"
@click="a=false"
style="width: fit-content"
@click="a = false"
>
<div :class="$style.closeContainer">
<icon name="mdi:chevron-left" />
Expand All @@ -32,7 +32,7 @@ const a = defineModel<boolean>({required: true})
padding: 1rem 0;
gap: 1rem;
}
.closeContainer{
.closeContainer {
display: flex;
align-items: center;
justify-content: center;
Expand Down

0 comments on commit b12035a

Please sign in to comment.