File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { createSlotVNodes } from './create-slot-vnodes'
6
6
7
7
export default function createFunctionalComponent (
8
8
component : Component ,
9
- mountingOptions : Options ,
9
+ mountingOptions : Options
10
10
) : Component {
11
11
if ( mountingOptions . context && typeof mountingOptions . context !== 'object' ) {
12
12
throwError ( 'mount.context must be an object' )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ function createVNodesForSlot (
10
10
) : VNode | string {
11
11
let vnode
12
12
if ( typeof slotValue === 'string' ) {
13
- const el = compileToFunctions ( `<div>${ slotValue } {{ }} </div>` )
13
+ const el = compileToFunctions ( `<div>${ slotValue } </div>` )
14
14
const _staticRenderFns = vm . _renderProxy . $options . staticRenderFns
15
15
// version < 2.5
16
16
if ( ! vm . _renderProxy . _staticTrees ) {
You can’t perform that action at this time.
0 commit comments