mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-06 19:52:29 +03:00
17 lines
375 B
HTML
17 lines
375 B
HTML
<!doctype html>
|
|
<html {{ htmlAttrs }}>
|
|
<head {{ headAttrs }}>
|
|
{{ head }}
|
|
<link rel="stylesheet" href="/global.css">
|
|
</head>
|
|
<body {{ bodyAttrs }}>
|
|
<div id="body-prepend">{{ bodyPrepend }}</div>
|
|
|
|
<a href="/">← Examples index</a>
|
|
<div id="app">{{ app }}</div>
|
|
|
|
<script src="/__build__/ssr.js"></script>
|
|
{{ bodyAppend }}
|
|
</body>
|
|
</html>
|