FEAT: evilspins v3 :: tracks info in player

This commit is contained in:
valere
2024-10-22 23:36:04 +02:00
parent bf7c68fa35
commit e1ed518ce4
22 changed files with 381 additions and 236 deletions

9
plugins/01.atropos.ts Normal file
View File

@@ -0,0 +1,9 @@
import { defineNuxtPlugin } from '#app'
export default defineNuxtPlugin(() => {
if (process.client) {
import('atropos/element').then(({ default: AtroposComponent }) => {
customElements.define('atropos-component', AtroposComponent)
})
}
})