mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-05-28 19:44:05 +03:00
0ab76ee16b
refactor: server injectors feat: add head, bodyPrepend, bodyAppend injectors refactor: create browserbuild through rollup replace (not separate entry)
17 lines
369 B
HTML
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="/">← Examples index</a>
|
|
{{ app }}
|
|
|
|
<script src="/__build__/ssr.js"></script>
|
|
{{ bodyAppend(true) }}
|
|
</body>
|
|
</html>
|