2019-10-11 14:13:55 +00:00
|
|
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
|
|
|
|
exports[`compile should contain standard transforms 1`] = `
|
|
|
|
"const _Vue = Vue
|
|
|
|
|
2020-02-10 22:29:12 +00:00
|
|
|
return function render(_ctx, _cache) {
|
2020-02-13 23:28:40 +00:00
|
|
|
with (_ctx) {
|
2020-10-19 22:12:09 +00:00
|
|
|
const { toDisplayString: _toDisplayString, createVNode: _createVNode, Fragment: _Fragment, openBlock: _openBlock, createBlock: _createBlock } = _Vue
|
2020-02-10 14:33:04 +00:00
|
|
|
|
2019-10-11 14:13:55 +00:00
|
|
|
return (_openBlock(), _createBlock(_Fragment, null, [
|
2020-10-19 22:12:09 +00:00
|
|
|
_createVNode(\\"div\\", {
|
|
|
|
textContent: _toDisplayString(text)
|
|
|
|
}, null, 8 /* PROPS */, [\\"textContent\\"]),
|
2019-10-11 14:13:55 +00:00
|
|
|
_createVNode(\\"div\\", { innerHTML: html }, null, 8 /* PROPS */, [\\"innerHTML\\"]),
|
|
|
|
_createVNode(\\"div\\", null, \\"test\\"),
|
2020-02-21 12:10:13 +00:00
|
|
|
_createVNode(\\"div\\", { style: {\\"color\\":\\"red\\"} }, \\"red\\"),
|
2019-11-15 21:47:55 +00:00
|
|
|
_createVNode(\\"div\\", { style: {color: 'green'} }, null, 4 /* STYLE */)
|
2019-12-13 01:46:20 +00:00
|
|
|
], 64 /* STABLE_FRAGMENT */))
|
2019-10-11 14:13:55 +00:00
|
|
|
}
|
|
|
|
}"
|
|
|
|
`;
|