mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-15 18:10:59 -07:00
10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
import Notification from '../views/components/ui-notification.vue';
|
|
|
|
export default function(message) {
|
|
const vm = new Notification({
|
|
propsData: {
|
|
message
|
|
}
|
|
}).$mount();
|
|
document.body.appendChild(vm.$el);
|
|
}
|