P粉2450036072023-08-26 13:44:49
你可以尝试在计划的js文件中声明fetchEvents和isEventActive方法,而无需将其包装在任何函数中
const fetchEvents = () => { //body }; const isEventActive = () => { //body };
并将它们导出为
export {fetchEvents, isEventActive};
现在使用它们
import {fetchEvents,isEventActive} from 'path-to-js-file' export default { setup() { fetchEvents() isEventActive() } }