2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-02 16:04:13 +03:00
Files
vue-meta/examples/ssr/app.template.html
T
pimlie 9cfde5b550 feat: make ssr work
feat: update build script

chore: use jiti instead of babel-node for examples
2021-01-25 00:50:46 +01:00

17 lines
373 B
HTML

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