2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-11 02:52:25 +03:00
Files
vue-meta/test/old/fixtures/app.template.html
T
pimlie 27aaf4744a test: add render tests
fix: webpack dev server

chore: use eslint not prettier

unfeat: remove support for comments (its brokenn in Vue, maybe later)
2020-07-26 00:11:28 +02:00

21 lines
496 B
HTML

<!doctype html>
<html {{ htmlAttrs.text(true) }}>
<head {{ headAttrs.text() }}>
{{ meta.text() }}
{{ title.text() }}
{{ link.text() }}
{{ style.text() }}
{{ headAssets }}
{{ script.text() }}
{{ noscript.text() }}
</head>
<body {{ bodyAttrs.text() }}>
{{ script.text({ pbody: true }) }}
{{ noscript.text({ pbody: true }) }}
{{ app }}
{{ bodyAssets }}
{{ script.text({ body: true }) }}
{{ noscript.text({ body: true }) }}
</body>
</html>