diff --git a/todos/src/App.vue b/todos/src/App.vue
index 86b380c..fd0859d 100644
--- a/todos/src/App.vue
+++ b/todos/src/App.vue
@@ -1,33 +1,33 @@
-
+
diff --git a/todos/src/components/TodoFooter.vue b/todos/src/components/TodoFooter.vue
index e6c24b5..6a2c28f 100644
--- a/todos/src/components/TodoFooter.vue
+++ b/todos/src/components/TodoFooter.vue
@@ -16,10 +16,10 @@ export default {
methods: {
tabClick(newType) {
- this.$emit("changeTabType", newType)
- }
- }
-}
+ this.$emit("changeTabType", newType);
+ },
+ },
+};
diff --git a/todos/src/components/TodoList.vue b/todos/src/components/TodoList.vue
index 75bff82..0c6bda4 100644
--- a/todos/src/components/TodoList.vue
+++ b/todos/src/components/TodoList.vue
@@ -99,8 +99,9 @@ export default {
methods: {
delTodo(item) {
- this.$emit("delTodo", item)
- }
- }
-}
-
\ No newline at end of file
+ this.$emit("delTodo", item);
+ },
+ },
+};
+
+
diff --git a/todos/src/main.js b/todos/src/main.js
index 58940f6..4611ed9 100644
--- a/todos/src/main.js
+++ b/todos/src/main.js
@@ -1,5 +1,5 @@
-import { createApp } from 'vue'
-import App from './App.vue'
-import './assets/global.css'
+import { createApp } from "vue";
+import App from "./App.vue";
+import "./assets/global.css";
-createApp(App).mount('#app')
+createApp(App).mount("#app");
diff --git a/todos/src/style.css b/todos/src/style.css
index 6cee70a..f362fe7 100644
--- a/todos/src/style.css
+++ b/todos/src/style.css
@@ -81,4 +81,4 @@ button:focus-visible {
button {
background-color: #f9f9f9;
}
-}
\ No newline at end of file
+}
diff --git a/todos/vite.config.js b/todos/vite.config.js
index bbcf80c..e3d9890 100644
--- a/todos/vite.config.js
+++ b/todos/vite.config.js
@@ -1,7 +1,7 @@
-import { defineConfig } from 'vite'
-import vue from '@vitejs/plugin-vue'
+import { defineConfig } from "vite";
+import vue from "@vitejs/plugin-vue";
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
-})
+});