[Vuejs]-Vue Js Applications Failed to Display the Page

0👍

It’s eslint error. You can read the message:

vue_det is assigned a value but never used

Please try removing it

<script type = "text/javascript">
import Vue from 'vue'; 
new Vue({
el: '#intro',
data: {
    message: 'My first VueJS Task'
}
});
</script>

Leave a comment