电速宝
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

props.js 343B

12345678910111213141516171819202122
  1. const props = {
  2. animation: {
  3. type: String,
  4. value: 'none',
  5. },
  6. delay: {
  7. type: Number,
  8. value: 0,
  9. },
  10. loading: {
  11. type: Boolean,
  12. value: true,
  13. },
  14. rowCol: {
  15. type: Array,
  16. },
  17. theme: {
  18. type: String,
  19. value: 'text',
  20. },
  21. };
  22. export default props;