我已经安装了名为element的 Vue.js 框架,但我收到了这个错误。
我正在导入我需要的所有 index.html 和 Reviews.vue 文件,其中仅包含:
<template>
<div id="app">
<el-button type="primary" round>Primary</el-button>
</div>
</template>
<script>
import Vue from 'vue'
import ColorPicker from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
export default {}
</script>
<style lang="scss">
</style>