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