Client - update prettier config

This commit is contained in:
Sam
2021-07-25 13:23:25 +02:00
parent 433f6bfd52
commit 5d80039319
11 changed files with 113 additions and 100 deletions

View File

@ -6,13 +6,13 @@
</template>
<script lang="ts">
import { defineComponent } from "vue";
import HelloWorld from "@/components/HelloWorld.vue"; // @ is an alias to /src
import { defineComponent } from 'vue'
import HelloWorld from '@/components/HelloWorld.vue' // @ is an alias to /src
export default defineComponent({
name: "Home",
components: {
HelloWorld,
},
});
export default defineComponent({
name: 'Home',
components: {
HelloWorld,
},
})
</script>