We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 080f58a commit 9d3ae3dCopy full SHA for 9d3ae3d
test/__snapshots__/transform.test.ts.snap
@@ -148,7 +148,7 @@ export default defineConfig({
148
149
exports[`transform fixtures test/fixtures/AsyncImport.vue 1`] = `
150
"<script lang=\\"ts\\">
151
-import { defineAsyncComponent } from 'script-setup';
+import { defineAsyncComponent } from '@vue/composition-api';
152
const ScriptOnly = defineAsyncComponent(() => import('./ScriptOnly.vue'));
153
const __sfc_main = {};
154
test/fixtures/AsyncImport.vue
@@ -1,5 +1,5 @@
1
<script setup lang="ts">
2
-import { defineAsyncComponent } from 'script-setup'
+import { defineAsyncComponent } from '@vue/composition-api'
3
const ScriptOnly = defineAsyncComponent(() => import('./ScriptOnly.vue'))
4
</script>
5
0 commit comments