chore: run formatting

This commit is contained in:
Mathieu Schimmerling
2023-09-21 08:38:27 +09:00
parent 62ab77c8df
commit 0b62d7ca54
21 changed files with 5037 additions and 1998 deletions

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<body>
<app-root></app-root>

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<head>
<script type="module" src="./main.ts"></script>

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<head>
<script type="module" src="./app.js"></script>

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<body>
<div id="app"></div>

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<body>
<div id="app"></div>

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<body>
<div id="app"></div>

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<body>
<div id="app"></div>

View File

@@ -4,6 +4,6 @@
<script>
export default {
name: 'App'
}
</script>
name: "App",
};
</script>

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<body>
<div id="app"></div>

View File

@@ -1,8 +1,8 @@
import Vue from 'vue'
import App from './App.vue'
import Vue from "vue";
import App from "./App.vue";
new Vue({
el: '#app',
el: "#app",
components: { App },
template: '<App/>'
})
template: "<App/>",
});

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<body>
<div id="app"></div>

View File

@@ -1,4 +1,4 @@
import { createApp } from 'vue'
import App from './App.vue'
import { createApp } from "vue";
import App from "./App.vue";
createApp(App).mount('#app')
createApp(App).mount("#app");

View File

@@ -3,7 +3,9 @@ import { UseFetchUsers } from "./UseFetchUsers";
@autoinject()
export class App {
constructor(private useFetchUsers: UseFetchUsers) { }
constructor(private useFetchUsers: UseFetchUsers) {
this.useFetchUsers = useFetchUsers;
}
attached() {
this.useFetchUsers.fetchData();