QingWei-Li / vue-markdown-loader

📇 Convert Markdown file to Vue2.0 component.
704 stars 161 forks source link

Unknown custom element: <type> #58

Open heecheolman opened 5 years ago

heecheolman commented 5 years ago

when i wrote in markdown

<type>

in this case, throw error

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

maybe, unkown html tag will be throw error in 'vue-markdown-loader'.

this is how I solved it simply

I used just backtick symbol

`<type>`

haha