wotamann / vuetify-form-base

Schema-based Form Generator - Vue.js 2.0 Component based on Vuetify 2.0
https://wotamann.github.io/vuetify
230 stars 63 forks source link

Unknown custom element: <v-select> #81

Closed alanski66 closed 3 years ago

alanski66 commented 3 years ago

Getting this error when trying to use basic schema for select

Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the "name" option.

works fine on page just not thru the schema. Oddly enough it renders but has no display Here is my setup. myModel: { chapter: 'Museum', }, mySchema: { name: { // shorthand definition name:'text' type: 'text', label: 'name', }, chapter: { type: 'select', label: 'Select Chapter', items: ['Library', 'Museum', 'The Loop'], }, level: { type: 'text', label: 'Level', }, file: { type: 'file', label: 'Icon', showSize: true, counter: true, accept, multiple: false, }, },
alanski66 commented 3 years ago

fixed by calling locally