Skip to content

Commit

Permalink
chore : install sass for SCSS
Browse files Browse the repository at this point in the history
  • Loading branch information
thalals committed Jul 31, 2024
1 parent 5e46255 commit d12d662
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 7 deletions.
24 changes: 24 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"prettier": "^3.2.5",
"sass": "^1.77.8",
"vite": "^5.3.1"
},
"type": "module"
Expand Down
9 changes: 5 additions & 4 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@ import { RouterLink, RouterView } from 'vue-router'
<img alt="Vue logo" class="logo" src="@/assets/falling_logo.png" width="125" height="125" />

<nav>
<RouterLink to="/">Home</RouterLink> |
<RouterLink to="/grid-system">About</RouterLink>
<router-link to="/">Home</router-link> |
<router-link to="/grid-system">About</router-link>
</nav>


</header>

<RouterView />
<router-view />
</template>

<style scoped>
<style lang="scss">
</style>
1 change: 1 addition & 0 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import router from './router'
import BootstrapVue3 from 'bootstrap-vue-3'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue-3/dist/bootstrap-vue-3.css'
import "./assets/scss/common.scss";

const app = createApp(App)

Expand Down
6 changes: 3 additions & 3 deletions src/views/GridSystemView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
</script>

<template>
<div>
Grid System
</div>
<div>
Grid System
</div>
</template>

<style scoped>
Expand Down

0 comments on commit d12d662

Please sign in to comment.