-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
some fixes after PR#1 and upgrade version
- Loading branch information
Showing
6 changed files
with
49 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,5 @@ coverage | |
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
||
#bun.lockb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
import App from "./App.vue"; | ||
import App from './App.vue' | ||
|
||
import { createModal } from "@kolirt/vue-modal"; | ||
import Notifications from "@kyvg/vue3-notification"; | ||
import "bootstrap/dist/css/bootstrap.min.css"; | ||
import { createApp } from "vue"; | ||
import { createModal } from '@kolirt/vue-modal' | ||
import Notifications from '@kyvg/vue3-notification' | ||
import 'bootstrap/dist/css/bootstrap.min.css' | ||
import { createApp } from 'vue' | ||
|
||
const app = createApp(App); | ||
const app = createApp(App) | ||
|
||
app.use(Notifications); | ||
app.use(Notifications) | ||
|
||
app.use( | ||
createModal({ | ||
transitionTime: 200, | ||
animationType: "slideDown", | ||
modalStyle: { | ||
padding: "5rem 2rem", | ||
align: "center", | ||
"z-index": 201, | ||
}, | ||
overlayStyle: { | ||
"background-color": "rgba(0, 0, 0, .5)", | ||
"backdrop-filter": "blur(5px)", | ||
"z-index": 200, | ||
}, | ||
}), | ||
); | ||
createModal({ | ||
transitionTime: 200, | ||
animationType: 'slideDown', | ||
modalStyle: { | ||
padding: '5rem 2rem', | ||
align: 'center', | ||
'z-index': 201 | ||
}, | ||
overlayStyle: { | ||
'background-color': 'rgba(0, 0, 0, .5)', | ||
'backdrop-filter': 'blur(5px)', | ||
'z-index': 200 | ||
} | ||
}) | ||
) | ||
|
||
app.mount("#app"); | ||
app.mount('#app') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
import { createModal } from "@kolirt/vue-modal"; | ||
import Notifications from "@kyvg/vue3-notification"; | ||
import "bootstrap/dist/css/bootstrap.min.css"; | ||
import { createApp } from "vue"; | ||
import { createModal } from '@kolirt/vue-modal' | ||
import Notifications from '@kyvg/vue3-notification' | ||
import 'bootstrap/dist/css/bootstrap.min.css' | ||
import { createApp } from 'vue' | ||
|
||
import App from "./App.vue"; | ||
import App from './App.vue' | ||
|
||
const app = createApp(App); | ||
const app = createApp(App) | ||
|
||
app.use(Notifications); | ||
app.use(Notifications) | ||
|
||
app.use( | ||
createModal({ | ||
transitionTime: 200, | ||
animationType: "slideDown", | ||
modalStyle: { | ||
padding: "5rem 2rem", | ||
align: "center", | ||
"z-index": 201, | ||
}, | ||
overlayStyle: { | ||
"background-color": "rgba(0, 0, 0, .5)", | ||
"backdrop-filter": "blur(5px)", | ||
"z-index": 200, | ||
}, | ||
}), | ||
); | ||
createModal({ | ||
transitionTime: 200, | ||
animationType: 'slideDown', | ||
modalStyle: { | ||
padding: '5rem 2rem', | ||
align: 'center', | ||
'z-index': 201 | ||
}, | ||
overlayStyle: { | ||
'background-color': 'rgba(0, 0, 0, .5)', | ||
'backdrop-filter': 'blur(5px)', | ||
'z-index': 200 | ||
} | ||
}) | ||
) | ||
|
||
app.mount("#app"); | ||
app.mount('#app') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
acd92f1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#1