2020-07-09 09:11:57 +08:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
2020-07-11 04:30:58 +08:00
exports[`SFC compile <script setup> CSS vars injection <script> w/ default export 1`] = `
"const __default__ = { setup() {} }
2020-07-21 00:46:33 +08:00
import { useCssVars as __useCssVars__ } from 'vue'
2020-07-11 04:30:58 +08:00
const __injectCSSVars__ = () => {
2020-07-16 06:05:35 +08:00
__useCssVars__(_ctx => ({ color: _ctx.color }))
2020-07-11 04:30:58 +08:00
}
const __setup__ = __default__.setup
__default__.setup = __setup__
? (props, ctx) => { __injectCSSVars__();return __setup__(props, ctx) }
: __injectCSSVars__
export default __default__"
`;
exports[`SFC compile <script setup> CSS vars injection <script> w/ default export in strings/comments 1`] = `
"
// export default {}
const __default__ = {}
2020-07-21 00:46:33 +08:00
import { useCssVars as __useCssVars__ } from 'vue'
2020-07-11 04:30:58 +08:00
const __injectCSSVars__ = () => {
2020-07-16 06:05:35 +08:00
__useCssVars__(_ctx => ({ color: _ctx.color }))
2020-07-11 04:30:58 +08:00
}
const __setup__ = __default__.setup
__default__.setup = __setup__
? (props, ctx) => { __injectCSSVars__();return __setup__(props, ctx) }
: __injectCSSVars__
export default __default__"
`;
exports[`SFC compile <script setup> CSS vars injection <script> w/ no default export 1`] = `
"const a = 1
const __default__ = {}
2020-07-21 00:46:33 +08:00
import { useCssVars as __useCssVars__ } from 'vue'
2020-07-11 04:30:58 +08:00
const __injectCSSVars__ = () => {
2020-07-16 06:05:35 +08:00
__useCssVars__(_ctx => ({ color: _ctx.color }))
2020-07-11 04:30:58 +08:00
}
const __setup__ = __default__.setup
__default__.setup = __setup__
? (props, ctx) => { __injectCSSVars__();return __setup__(props, ctx) }
: __injectCSSVars__
export default __default__"
`;
exports[`SFC compile <script setup> CSS vars injection w/ <script setup> 1`] = `
2020-10-30 03:03:39 +08:00
"import { useCssVars } from 'vue'
2020-07-11 04:30:58 +08:00
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-07-11 04:30:58 +08:00
const color = 'red'
2020-07-16 06:05:35 +08:00
__useCssVars__(_ctx => ({ color }))
2020-07-11 04:30:58 +08:00
return { color }
}
2020-11-13 07:11:25 +08:00
}"
2020-07-11 04:30:58 +08:00
`;
2020-11-13 11:51:40 +08:00
exports[`SFC compile <script setup> errors should allow useOptions() referencing imported binding 1`] = `
2020-11-13 07:11:25 +08:00
"import { bar } from './bar'
export default {
props: {
2020-07-09 09:11:57 +08:00
foo: {
default: () => bar
}
2020-11-13 07:11:25 +08:00
},
setup() {
2020-07-09 09:11:57 +08:00
2020-11-13 07:11:25 +08:00
2020-10-30 03:03:39 +08:00
return { bar }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
`;
2020-11-13 11:51:40 +08:00
exports[`SFC compile <script setup> errors should allow useOptions() referencing scope var 1`] = `
2020-11-13 07:11:25 +08:00
"export default {
props: {
2020-07-09 09:11:57 +08:00
foo: {
default: bar => bar + 1
}
2020-11-13 07:11:25 +08:00
},
setup() {
2020-07-09 09:11:57 +08:00
2020-11-13 07:11:25 +08:00
const bar = 1
return { bar }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> imports dedupe between user & helper 1`] = `
"import { ref } from 'vue'
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-07-09 09:11:57 +08:00
2020-11-13 07:11:25 +08:00
const foo = ref(1)
return { foo, ref }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> imports import dedupe between <script> and <script setup> 1`] = `
"import { x } from './x'
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-07-09 09:11:57 +08:00
2020-10-30 03:03:39 +08:00
x()
return { x }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> imports should extract comment for import or type declarations 1`] = `
"import a from 'a' // comment
2020-11-13 07:11:25 +08:00
import b from 'b'
export default {
setup() {
2020-07-09 09:11:57 +08:00
2020-11-13 07:11:25 +08:00
2020-10-30 03:03:39 +08:00
return { a, b }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> imports should hoist and expose imports 1`] = `
"import { ref } from 'vue'
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-07-09 09:11:57 +08:00
2020-10-30 03:03:39 +08:00
return { ref }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
`;
exports[`SFC compile <script setup> inlineTemplate mode avoid unref() when necessary 1`] = `
"import { createVNode as _createVNode, unref as _unref, toDisplayString as _toDisplayString, Fragment as _Fragment, openBlock as _openBlock, createBlock as _createBlock } from \\"vue\\"
import { ref } from 'vue'
import Foo from './Foo.vue'
import other from './util'
export default {
setup() {
const count = ref(0)
const constant = {}
function fn() {}
return (_ctx, _cache, $props, $setup, $data, $options) => {
return (_openBlock(), _createBlock(_Fragment, null, [
_createVNode(Foo),
_createVNode(\\"div\\", { onClick: fn }, _toDisplayString(_unref(count)) + \\" \\" + _toDisplayString(constant) + \\" \\" + _toDisplayString(_unref(other)), 1 /* TEXT */)
], 64 /* STABLE_FRAGMENT */))
}
}
}"
`;
exports[`SFC compile <script setup> inlineTemplate mode should work 1`] = `
"import { unref as _unref, toDisplayString as _toDisplayString, createVNode as _createVNode, Fragment as _Fragment, openBlock as _openBlock, createBlock as _createBlock } from \\"vue\\"
const _hoisted_1 = /*#__PURE__*/_createVNode(\\"div\\", null, \\"static\\", -1 /* HOISTED */)
import { ref } from 'vue'
export default {
setup() {
const count = ref(0)
return (_ctx, _cache, $props, $setup, $data, $options) => {
return (_openBlock(), _createBlock(_Fragment, null, [
_createVNode(\\"div\\", null, _toDisplayString(_unref(count)), 1 /* TEXT */),
_hoisted_1
], 64 /* STABLE_FRAGMENT */))
}
}
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> ref: syntax sugar accessing ref binding 1`] = `
"import { ref } from 'vue'
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-07-09 09:11:57 +08:00
2020-10-30 03:03:39 +08:00
const a = ref(1)
console.log(a.value)
function get() {
return a.value + 1
}
return { a, get }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> ref: syntax sugar array destructure 1`] = `
"import { ref } from 'vue'
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-10-30 03:03:39 +08:00
const n = ref(1), [__a, __b = 1, ...__c] = useFoo()
const a = ref(__a);
const b = ref(__b);
const c = ref(__c);
console.log(n.value, a.value, b.value, c.value)
return { n, a, b, c }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> ref: syntax sugar convert ref declarations 1`] = `
"import { ref } from 'vue'
2020-07-09 09:11:57 +08:00
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-10-30 03:03:39 +08:00
2020-10-31 03:29:38 +08:00
const foo = ref()
2020-10-30 03:03:39 +08:00
const a = ref(1)
const b = ref({
count: 0
})
let c = () => {}
let d
2020-10-31 03:29:38 +08:00
return { foo, a, b, c, d }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> ref: syntax sugar multi ref declarations 1`] = `
"import { ref } from 'vue'
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-10-30 03:03:39 +08:00
const a = ref(1), b = ref(2), c = ref({
count: 0
})
return { a, b, c }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> ref: syntax sugar mutating ref binding 1`] = `
"import { ref } from 'vue'
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-07-09 09:11:57 +08:00
2020-10-30 03:03:39 +08:00
const a = ref(1)
const b = ref({ count: 0 })
function inc() {
a.value++
a.value = a.value + 1
b.value.count++
b.value.count = b.value.count + 1
}
return { a, b, inc }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> ref: syntax sugar nested destructure 1`] = `
"import { ref } from 'vue'
2020-07-09 09:11:57 +08:00
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-10-30 03:03:39 +08:00
const [{ a: { b: __b }}] = useFoo()
const b = ref(__b);
const { c: [__d, __e] } = useBar()
const d = ref(__d);
const e = ref(__e);
console.log(b.value, d.value, e.value)
return { b, d, e }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> ref: syntax sugar object destructure 1`] = `
"import { ref } from 'vue'
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-10-30 03:03:39 +08:00
const n = ref(1), { a: __a, b: __c, d: __d = 1, e: __f = 2, ...__g } = useFoo()
const a = ref(__a);
const c = ref(__c);
const d = ref(__d);
const f = ref(__f);
const g = ref(__g);
console.log(n.value, a.value, c.value, d.value, f.value, g.value)
return { n, a, c, d, f, g }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> ref: syntax sugar should not convert non ref labels 1`] = `
2020-11-13 07:11:25 +08:00
"export default {
setup() {
2020-07-09 09:11:57 +08:00
2020-10-30 03:03:39 +08:00
foo: a = 1, b = 2, c = {
count: 0
}
2020-07-09 09:11:57 +08:00
2020-09-15 22:39:27 +08:00
return { }
}
2020-11-13 07:11:25 +08:00
}"
2020-09-15 22:39:27 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> ref: syntax sugar using ref binding in property shorthand 1`] = `
"import { ref } from 'vue'
2020-09-15 22:39:27 +08:00
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-09-15 22:39:27 +08:00
2020-10-30 03:03:39 +08:00
const a = ref(1)
const b = { a: a.value }
function test() {
const { a } = b
}
return { a, b, test }
2020-07-09 09:11:57 +08:00
}
2020-11-13 07:11:25 +08:00
}"
2020-07-09 09:11:57 +08:00
`;
2020-10-30 03:03:39 +08:00
exports[`SFC compile <script setup> should expose top level declarations 1`] = `
"import { x } from './x'
2020-11-13 07:11:25 +08:00
export default {
setup() {
2020-07-09 09:11:57 +08:00
2020-10-30 03:03:39 +08:00
let a = 1
const b = 2
function c() {}
class d {}
2020-11-13 07:11:25 +08:00
return { a, b, c, d, x }
}
}"
`;
2020-11-13 11:51:40 +08:00
exports[`SFC compile <script setup> useOptions() 1`] = `
"export default {
props: {
foo: String
},
emit: ['a', 'b'],
setup(__props, { props, emit }) {
const bar = 1
return { props, emit, bar }
}
}"
`;
exports[`SFC compile <script setup> with TypeScript hoist type declarations 1`] = `
"import { defineComponent } from 'vue'
export interface Foo {}
type Bar = {}
export default defineComponent({
setup() {
return { }
}
})"
`;
exports[`SFC compile <script setup> with TypeScript useOptions w/ runtime options 1`] = `
2020-11-13 07:11:25 +08:00
"import { defineComponent } from 'vue'
export default defineComponent({
props: { foo: String },
emits: ['a', 'b'],
setup(__props, { props, emit }) {
return { props, emit }
}
})"
`;
2020-11-13 11:51:40 +08:00
exports[`SFC compile <script setup> with TypeScript useOptions w/ type / extract emits (union) 1`] = `
2020-11-13 07:11:25 +08:00
"import { Slots, defineComponent } from 'vue'
export default defineComponent({
emits: [\\"foo\\", \\"bar\\", \\"baz\\"] as unknown as undefined,
setup(__props, { emit }: {
props: {},
emit: ((e: 'foo' | 'bar') => void) | ((e: 'baz', id: number) => void),
slots: Slots,
attrs: Record<string, any>
}) {
return { emit }
}
})"
`;
2020-11-13 11:51:40 +08:00
exports[`SFC compile <script setup> with TypeScript useOptions w/ type / extract emits 1`] = `
2020-11-13 07:11:25 +08:00
"import { Slots, defineComponent } from 'vue'
export default defineComponent({
emits: [\\"foo\\", \\"bar\\"] as unknown as undefined,
setup(__props, { emit }: {
props: {},
emit: (e: 'foo' | 'bar') => void,
slots: Slots,
attrs: Record<string, any>
}) {
return { emit }
}
})"
`;
2020-11-13 11:51:40 +08:00
exports[`SFC compile <script setup> with TypeScript useOptions w/ type / extract props 1`] = `
2020-11-13 07:11:25 +08:00
"import { defineComponent } from 'vue'
interface Test {}
type Alias = number[]
export default defineComponent({
props: {
string: { type: String, required: true },
number: { type: Number, required: true },
boolean: { type: Boolean, required: true },
object: { type: Object, required: true },
objectLiteral: { type: Object, required: true },
fn: { type: Function, required: true },
functionRef: { type: Function, required: true },
objectRef: { type: Object, required: true },
array: { type: Array, required: true },
arrayRef: { type: Array, required: true },
tuple: { type: Array, required: true },
set: { type: Set, required: true },
literal: { type: String, required: true },
optional: { type: null, required: false },
recordRef: { type: Object, required: true },
interface: { type: Object, required: true },
alias: { type: Array, required: true },
union: { type: [String, Number], required: true },
literalUnion: { type: [String, String], required: true },
literalUnionMixed: { type: [String, Number, Boolean], required: true },
intersection: { type: Object, required: true }
} as unknown as undefined,
setup() {
return { }
}
})"
2020-07-09 09:11:57 +08:00
`;