vue3+webpack5 组件中异步加载函数

app.vue




./utils/index.js

export const asyncFn = async () => {
  console.log("异步加载函数");
};

你可能感兴趣的:(vue3+webpack5 组件中异步加载函数)