vuetable-2-tutorial icon indicating copy to clipboard operation
vuetable-2-tutorial copied to clipboard

[Vue warn]: Unknown custom element: <vuetable-field-sequence>

Open alao115 opened this issue 5 years ago • 1 comments

Hi everyone.... I need your help please with this stuff:

When i try to use a special field any one between the five fields, I got : [Vue warn]: Unknown custom element: <vuetable-field-{{the field name here}}> in my console..

Here are the examples:

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

here is my code: `

alao115 avatar Apr 19 '19 10:04 alao115

I had the same problem. The problem was that I had installed the version

npm install vuetable-2 @ next --save

And I was using the old doc instead of the one corresponding to my installed version https://www.vuetable.com/

For the costomized fields I have to add this object in my fields table  {  name: 'actions',  title: 'Actions', titleClass: 'text-center',  dataClass: 'text-center', width: '15% ' } and <div slot = "actions" slot-scope = "props"> ........ </ Div> inside the vuetable tag

gabeta avatar Nov 06 '19 00:11 gabeta