🖥

#Vue – ReferenceError Integer is not defined ( did you mean "Number" ?

2023/09/01に公開

Integerという型はないのだ

Fix

<template>
  <h1>
    {{ count }}
  </h1>
</template>

<script>
export default {
  props: {
    count: {
-     type: Integer,
+     type: Number,
      default: 1
    }
  }
}
</script>

Guilde

image
https://vuejs.org/v2/guide/components-props.html#Prop-Types

Original by Github issue

https://github.com/YumaInaura/YumaInaura/issues/3137

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

Twitter

https://twitter.com/YumaInaura

公開日時

2020-05-05

Discussion