mirror of
https://github.com/vuejs/vue.git
synced 2024-11-21 20:28:54 +00:00
fix(compiler-sfc): add semicolon after defineProps
statement (#12879)
This commit is contained in:
parent
b8c8b3fc7a
commit
51fef2ca69
@ -1125,7 +1125,7 @@ export function compileScript(
|
|||||||
startOffset,
|
startOffset,
|
||||||
`\nconst ${propsIdentifier} = __props${
|
`\nconst ${propsIdentifier} = __props${
|
||||||
propsTypeDecl ? ` as ${genSetupPropsType(propsTypeDecl)}` : ``
|
propsTypeDecl ? ` as ${genSetupPropsType(propsTypeDecl)}` : ``
|
||||||
}\n`
|
};\n`
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
if (propsDestructureRestId) {
|
if (propsDestructureRestId) {
|
||||||
@ -1133,7 +1133,7 @@ export function compileScript(
|
|||||||
startOffset,
|
startOffset,
|
||||||
`\nconst ${propsDestructureRestId} = ${helper(
|
`\nconst ${propsDestructureRestId} = ${helper(
|
||||||
`createPropsRestProxy`
|
`createPropsRestProxy`
|
||||||
)}(__props, ${JSON.stringify(Object.keys(propsDestructuredBindings))})\n`
|
)}(__props, ${JSON.stringify(Object.keys(propsDestructuredBindings))});\n`
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -212,7 +212,7 @@ export default {
|
|||||||
props: propsModel,
|
props: propsModel,
|
||||||
setup(__props) {
|
setup(__props) {
|
||||||
|
|
||||||
const props = __props
|
const props = __props;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -229,7 +229,7 @@ export default {
|
|||||||
props: {},
|
props: {},
|
||||||
setup(__props) {
|
setup(__props) {
|
||||||
|
|
||||||
const props = __props
|
const props = __props;
|
||||||
|
|
||||||
|
|
||||||
return { props, x }
|
return { props, x }
|
||||||
@ -245,7 +245,7 @@ exports[`SFC compile <script setup> > defineProps() 1`] = `
|
|||||||
},
|
},
|
||||||
setup(__props) {
|
setup(__props) {
|
||||||
|
|
||||||
const props = __props
|
const props = __props;
|
||||||
|
|
||||||
|
|
||||||
const bar = 1
|
const bar = 1
|
||||||
@ -262,7 +262,7 @@ exports[`SFC compile <script setup> > defineProps/defineEmits in multi-variable
|
|||||||
emits: ['a'],
|
emits: ['a'],
|
||||||
setup(__props, { emit }) {
|
setup(__props, { emit }) {
|
||||||
|
|
||||||
const props = __props
|
const props = __props;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -278,7 +278,7 @@ exports[`SFC compile <script setup> > defineProps/defineEmits in multi-variable
|
|||||||
emits: ['a'],
|
emits: ['a'],
|
||||||
setup(__props, { emit }) {
|
setup(__props, { emit }) {
|
||||||
|
|
||||||
const props = __props
|
const props = __props;
|
||||||
|
|
||||||
const a = 1;
|
const a = 1;
|
||||||
|
|
||||||
@ -835,7 +835,7 @@ export default /*#__PURE__*/_defineComponent({
|
|||||||
emits: ['a', 'b'],
|
emits: ['a', 'b'],
|
||||||
setup(__props, { emit }) {
|
setup(__props, { emit }) {
|
||||||
|
|
||||||
const props = __props
|
const props = __props;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -924,7 +924,7 @@ const props = __props as {
|
|||||||
foo?: string
|
foo?: string
|
||||||
bar?: number
|
bar?: number
|
||||||
baz: boolean
|
baz: boolean
|
||||||
}
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -946,7 +946,7 @@ export default /*#__PURE__*/_defineComponent({
|
|||||||
},
|
},
|
||||||
setup(__props: any) {
|
setup(__props: any) {
|
||||||
|
|
||||||
const props = __props as { foo: string, bar?: number, baz: boolean, qux(): number }
|
const props = __props as { foo: string, bar?: number, baz: boolean, qux(): number };
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user