index.js:1 Uncaught TypeError: Cannot read properties of undefined (reading 'pro

281 阅读1分钟

HTML文件引入vue和elementUI报错:index.js:1 Uncaught TypeError: Cannot read properties of undefined (reading 'prototype')

image.png

image.png

解决方法:

引入的vue顺序必须放在引入的elementUI前面即可解决这个问题

image.png

<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://unpkg.com/element-ui/lib/index.js"></script>