Skip to content

Commit 9363c18

Browse files
committed
Project cleanup
1 parent f2523ee commit 9363c18

File tree

6 files changed

+23
-66
lines changed

6 files changed

+23
-66
lines changed

src/App.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<template>
2-
<HelloWorld msg="Welcome to Your Vue.js App"/>
2+
<Home msg="Welcome to Your Vue.js App"/>
33
</template>
44

55
<script>
6-
import HelloWorld from './components/HelloWorld.vue'
6+
import Home from './components/Home.vue'
77
88
export default {
99
name: 'App',
1010
components: {
11-
HelloWorld
11+
Home
1212
}
1313
}
1414
</script>
File renamed without changes.

src/components/HelloWorld.vue

Lines changed: 0 additions & 58 deletions
This file was deleted.

src/components/Home.vue

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<template>
2+
<div class="hello">
3+
<h1>{{ msg }}</h1>
4+
5+
</div>
6+
</template>
7+
8+
<script>
9+
export default {
10+
name: 'Home',
11+
props: {
12+
msg: String
13+
}
14+
}
15+
</script>
16+
17+
<style scoped>
18+
19+
</style>

src/index.css

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/main.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { createApp } from 'vue'
22
import App from './App.vue'
3-
import './index.css'
4-
import './assets/tailwind.css'
3+
import './assets/css/tailwind.css'
54

65
createApp(App).mount('#app')

0 commit comments

Comments
 (0)