Skip to content

Commit 3605c5e

Browse files
quientiqhermel
and
qhermel
authored
fix: script and script setup in same vue component file (Vue 3) (#541)
Co-authored-by: qhermel <[email protected]>
1 parent 21feab9 commit 3605c5e

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<template>
2+
<div>
3+
<button @click="increase">Products: {{ products }}</button>
4+
<Basic />
5+
<span>{{ msg }}</span>
6+
</div>
7+
</template>
8+
9+
<script>
10+
import Basic from './Basic.vue'
11+
</script>
12+
13+
<script setup>
14+
import { ref } from 'vue'
15+
16+
const products = ref(10)
17+
const greet = () => console.log('greet')
18+
const increase = () => {
19+
greet()
20+
num.value++
21+
}
22+
const msg = 'hello world'
23+
</script>

e2e/3.x/basic/test.js

+7
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import ScriptSetupSugarRef from './components/ScriptSetupSugarRef.vue'
2424
import FunctionalRenderFn from './components/FunctionalRenderFn.vue'
2525
import CompilerDirective from './components/CompilerDirective.vue'
2626
import ExtendedTsConfig from './components/ExtendedTsConfig.vue'
27+
import ScriptAndScriptSetup from './components/ScriptAndScriptSetup.vue'
2728

2829
// TODO: JSX for Vue 3? TSX?
2930
import Jsx from './components/Jsx.vue'
@@ -214,3 +215,9 @@ test('handles extended tsconfig.json files', () => {
214215
const elm = document.querySelector('div')
215216
expect(elm).toBeDefined()
216217
})
218+
219+
test('processes SFC with both <script> and <script setup> in same component file', () => {
220+
mount(ScriptAndScriptSetup)
221+
expect(document.body.outerHTML).toContain('Products: 10')
222+
expect(document.body.outerHTML).toContain('Welcome to Your Vue.js App')
223+
})

packages/vue3-jest/lib/process.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -164,15 +164,21 @@ module.exports = function(src, filename, config) {
164164
getVueJestConfig(config)['componentNamespace'] || vueComponentNamespace
165165

166166
const templateResult = processTemplate(descriptor, filename, config)
167-
const scriptResult = processScript(descriptor.script, filename, config)
168-
const scriptSetupResult = processScriptSetup(descriptor, filename, config)
169167
const stylesResult = processStyle(descriptor.styles, filename, config)
170168
const customBlocksResult = processCustomBlocks(
171169
descriptor.customBlocks,
172170
filename,
173171
componentNamespace,
174172
config
175173
)
174+
175+
let scriptResult
176+
const scriptSetupResult = processScriptSetup(descriptor, filename, config)
177+
178+
if (!scriptSetupResult) {
179+
scriptResult = processScript(descriptor.script, filename, config)
180+
}
181+
176182
const output = generateCode({
177183
scriptResult,
178184
scriptSetupResult,

0 commit comments

Comments
 (0)