1π
β
It looks like you are not exporting Vue component definition properly.
Try to add export default {
1π
You should register the component using export default
, as usual why using single file components. This would look like this:
<script>
export default {
name: 'chart'
}
</script>
Source:stackexchange.com