前提・実現したいこと
Vue.jsで日付選択フォームを作成したいです。
https://www.kabanoki.net/3905/
このサイトを参考に作成したのですが、エラーが出て表示されなくなってしまいます。
発生している問題・エラーメッセージ
[Vue warn]: Unknown custom element: <v-date-picker> - did you register the component correctly? For recursive components, make sure to provide the "name" option. found in ---> <About> at app/javascript/packs/components/about.vue <Root>
該当のソースコード
<template> <v-date-picker :mode="mode" :formats="formats" v-model="selectedDate"></v-date-picker> </template> <script> import Vue from 'vue'; import VCalendar from 'v-calendar'; Vue.use(VCalendar); export default{ data: function(){ return{ mode: 'single', formats: { input: ['YYYY-MM-DD'], }, selectedDate: null, } } } </script>
https://www.kabanoki.net/3890/
このサイトを参考にnpmでv-calendarをインストール済みです。
何が原因かわからなくて困っています...
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー