[Vuejs]-Import Vue breaks Vue

1👍

import statements may only appear in a javascript module

<script type="module" src="app.js"></script>

Should fix it, though you would not need to import Vue with your current code anyway, as you have seen

👤Bravo

Leave a comment