|
1 | 1 | // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
2 | 2 |
|
3 |
| -exports[`compiler-dom: transform v-on > should wrap both for dynamic key event w/ once modifiers 1`] = ` |
| 3 | +exports[`compiler-dom: transform v-on > should wrap both for dynamic key event w/ event modifiers 1`] = ` |
4 | 4 | "const _Vue = Vue
|
5 | 5 |
|
6 | 6 | return function render(_ctx, _cache) {
|
7 | 7 | with (_ctx) {
|
8 |
| - const { toHandlerKey: _toHandlerKey, checkDynamicEvent: _checkDynamicEvent, openBlock: _openBlock, createElementBlock: _createElementBlock } = _Vue |
| 8 | + const { toHandlerKey: _toHandlerKey, checkDynamicEvent: _checkDynamicEvent, createElementVNode: _createElementVNode, Fragment: _Fragment, openBlock: _openBlock, createElementBlock: _createElementBlock } = _Vue |
9 | 9 |
|
10 |
| - return (_openBlock(), _createElementBlock("div", { [_checkDynamicEvent(_toHandlerKey(e),"Once")]: test }, null, 16 /* FULL_PROPS */)) |
| 10 | + return (_openBlock(), _createElementBlock(_Fragment, null, [ |
| 11 | + _createElementVNode("div", { [_checkDynamicEvent(_toHandlerKey(e),"Once")]: test }, null, 16 /* FULL_PROPS */), |
| 12 | + _createElementVNode("div", { [_checkDynamicEvent(_toHandlerKey(e),"Passive")]: test }, null, 16 /* FULL_PROPS */), |
| 13 | + _createElementVNode("div", { [_checkDynamicEvent(_toHandlerKey(e),"Capture")]: test }, null, 16 /* FULL_PROPS */) |
| 14 | + ], 64 /* STABLE_FRAGMENT */)) |
11 | 15 | }
|
12 | 16 | }"
|
13 | 17 | `;
|
0 commit comments