Error default is not exported by node_modulesvuedistvueruntimeesm-bundlerjs
This error occurs when you are trying to import the 'default' export from a Vue.js module but it is not available in the module.
To fix this error, you can try importing the specific component or function that you need from the Vue.js module instead of importing the 'default' export. For example, if you need the 'createApp' function from Vue.js, you can import it like this:
import { createApp } from 'vue';
If you are still getting the error, you may need to check if you are importing the correct version of Vue.js. Make sure that you are using the version that supports the feature or component you are trying to use
原文地址: http://www.cveoy.top/t/topic/hjMK 著作权归作者所有。请勿转载和采集!