f2d7493c2a
* stuff copied over, but aint workin * various fixes * vscode settings * trigger deploy * trigger deploy
10 lines
291 B
Vue
10 lines
291 B
Vue
<template>
|
|
<GlobalToastRenderer v-model:notification="hostAppStore.currentNotification" />
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { GlobalToastRenderer } from '@speckle/ui-components'
|
|
import { useHostAppStore } from '~/store/hostApp'
|
|
|
|
const hostAppStore = useHostAppStore()
|
|
</script>
|