Composition-APIのpropに型指定する

動作環境

サンプルコード

export default defineComponent({
  props: {
    data: {
      type: Object as PropType<Playlist>,
    },
  },
})

ここでは、Playlistというオリジナルの型で型指定をしている