mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
export default defineNuxtPlugin(() => {
|
|
if (process.server)
|
|
return
|
|
|
|
const promise = import('@emoji-mart/data').then(r => r.default)
|
|
import('emoji-mart').then(r => r.init({
|
|
data: () => promise,
|
|
}))
|
|
})
|