modbender / nuxt-snackbar

A Nuxt Snackbar/Toast Implementation independent of CSS framework
https://nuxt.com/modules/snackbar
MIT License
19 stars 6 forks source link

Type '{}' not assignable #3

Closed autorunman22 closed 1 year ago

autorunman22 commented 1 year ago

I'm getting this warning on my vue component even though the module works fine:

image

It's quite bothering because it makes the file color red.

modbender commented 1 year ago

That won't cause a issue but yes I'm aware of it. Next update within the week will fix it.

autorunman22 commented 1 year ago

For easy fix, just convert your template to PUG:

<template lang="pug">
NuxtLayout
  NuxtPage
  NuxtSnackbar
</template>
modbender commented 1 year ago

Good workaround.

modbender commented 1 year ago

@autorunman22 Fixed in v1.0.3

autorunman22 commented 1 year ago

Thank you @modbender !