chore(deps): add @tailwindcss/typography

This commit is contained in:
Benjamin Canac
2022-06-30 11:48:59 +02:00
parent 847788b2a0
commit a689542de5
4 changed files with 1078 additions and 1359 deletions

View File

@@ -1,4 +1,3 @@
import { nanoid } from 'nanoid'
import { Ref } from 'vue'
import { defineNuxtPlugin, useState } from '#app'
import { ToastNotification, ToastPlugin } from '../types'
@@ -8,7 +7,7 @@ export default defineNuxtPlugin((nuxtApp) => {
function addNotification (notification: Partial<ToastNotification>) {
const body = {
id: nanoid(),
id: new Date().getTime(),
...notification
}