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>
Source:stackexchange.com