Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vue 3 migration #109

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Implement LogView
* Bootstrap 5 scss
* Begin implementaton of `services/`
* Begin replacing `axios` with `fetch API`
  • Loading branch information
amimof committed May 16, 2024
commit 293b91eb4d674eb7bfb76a14102d2c6dda669846
21 changes: 17 additions & 4 deletions web2/package-lock.json

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

3 changes: 2 additions & 1 deletion web2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/vue-fontawesome": "^3.0.6",
Expand All @@ -27,7 +28,7 @@
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"sass": "^1.77.0",
"sass": "^1.77.1",
"sass-loader": "^14.2.1",
"vite": "^5.2.8"
}
Expand Down
2 changes: 1 addition & 1 deletion web2/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ import { RouterLink, RouterView } from 'vue-router'
</template>


<style lang="scss">
<style scoped>
</style>
12 changes: 11 additions & 1 deletion web2/src/components/Breadcrumb.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,20 @@ function items() {
</script>

<template>
<b-breadcrumb :items="items" />
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item"><a href="#">Library</a></li>
<li class="breadcrumb-item active" aria-current="page">Test</li>
</ol>
</nav>
<!-- <b-breadcrumb :items="items" /> -->
</template>

<style scoped>
.nav {
display: inline-block;
}
</style>


Loading