mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
allow an anchor element to be passed for initial component bootstrap
This commit is contained in:
parent
c7dda9ff79
commit
9dbc571f57
@ -213,7 +213,7 @@ export default function dom(
|
||||
${options.dev && `if ( options.hydrate ) throw new Error( 'options.hydrate only works if the component was compiled with the \`hydratable: true\` option' );`}
|
||||
this._fragment.create();
|
||||
`}
|
||||
this._fragment.${block.hasIntroMethod ? 'intro' : 'mount'}( options.target, null );
|
||||
this._fragment.${block.hasIntroMethod ? 'intro' : 'mount'}( options.target, options.anchor || null );
|
||||
}
|
||||
|
||||
${(generator.hasComponents || generator.hasComplexBindings || templateProperties.oncreate || generator.hasIntroTransitions) && deindent`
|
||||
|
Loading…
Reference in New Issue
Block a user