jherr/vue-music-notation

Not working in Nuxt 3 with Vue 3

Opened this issue · 0 comments

I love that this project exists and would love to see it fully working in Vue 3; as of right now I get this error in Nuxt3:

image

When I do this:

<template>
  <div class="what-the-note">
    <Notation
      :show-treble-clef="true"
      :show-bass-clef="true"
    >
      <Staff
        :notes="[40,60,64,67]"
      />
    </Notation>
  </div>
</template>

<script setup>
//
</script>

<style lang="scss" scoped>
//
</style>