directory structure:
entry entry is index.js, sibling, App.vue, sibling and components/Hello.vue
index is written as follows:
</div>
<div>Vue Analyze Succeed!{{info}}</div>
</div>
</template>
<script>
import Hello from "./components/Hello"
export default {
name: "App"
}
</script>
components/Hello.vue is written as follows:
<template>
<div>
<div>A simple Template!</div>
</div>
</template>
the error message becomes:
This dependency was not found:
* vue in ./src/components/Hello.vue
To install it, you can run: npm install --save vue