You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 rivejä
258 B

  1. import { defineNuxtPlugin } from '#app'
  2. export default defineNuxtPlugin(() => {
  3. if (process.client) {
  4. import('atropos/element').then(({ default: AtroposComponent }) => {
  5. customElements.define('atropos-component', AtroposComponent)
  6. })
  7. }
  8. })