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

@ -127,30 +127,30 @@
</template>
<script lang="ts">
import { defineComponent } from "vue";
import { defineComponent } from 'vue'
export default defineComponent({
name: "HelloWorld",
props: {
msg: String,
},
});
export default defineComponent({
name: 'HelloWorld',
props: {
msg: String,
},
})
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
h3 {
margin: 40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
h3 {
margin: 40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>

View File

@ -6,11 +6,11 @@
</template>
<script lang="ts">
import { defineComponent } from "vue";
import { defineComponent } from 'vue'
export default defineComponent({
name: "NavBar",
});
export default defineComponent({
name: 'NavBar',
})
</script>
<style scoped></style>