2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-05-28 07:14:04 +03:00
Files
vue-meta/examples/ssr/app.template.html
T
pimlie 0ab76ee16b feat: add possibility to add additional meta info
refactor: server injectors

feat: add head, bodyPrepend, bodyAppend injectors

refactor: create browserbuild through rollup replace (not separate entry)
2019-09-17 13:55:29 +02:00

17 lines
369 B
HTML

<!doctype html>
<html {{ htmlAttrs.text(true) }}>
<head {{ headAttrs.text() }}>
{{ head(true) }}
<link rel="stylesheet" href="/global.css">
</head>
<body {{ bodyAttrs.text() }}>
{{ bodyPrepend(true) }}
<a href="/">&larr; Examples index</a>
{{ app }}
<script src="/__build__/ssr.js"></script>
{{ bodyAppend(true) }}
</body>
</html>