mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-14 10:42:25 +03:00
05163a77a8
* feat: add option for prepending (no)script to body * test: use browser getUrl * refactor: use pbody insteadn of pody * test: add prepend/append body generator test * test: add prepend body updater test * chore: remove typo
20 lines
504 B
HTML
20 lines
504 B
HTML
<!doctype html>
|
|
<html data-vue-meta-server-rendered {{ htmlAttrs.text() }}>
|
|
<head {{ headAttrs.text() }}>
|
|
{{ meta.text() }}
|
|
{{ title.text() }}
|
|
{{ link.text() }}
|
|
{{ style.text() }}
|
|
{{ webpackAssets }}
|
|
{{ script.text() }}
|
|
{{ noscript.text() }}
|
|
</head>
|
|
<body {{ bodyAttrs.text() }}>
|
|
{{ script.text({ pbody: true }) }}
|
|
{{ noscript.text({ pbody: true }) }}
|
|
{{ app }}
|
|
{{ script.text({ body: true }) }}
|
|
{{ noscript.text({ body: true }) }}
|
|
</body>
|
|
</html>
|