Skip to content

Instantly share code, notes, and snippets.

@pxwee5
Created May 14, 2019 10:54
Show Gist options
  • Save pxwee5/59b46330693a2c5fa18556a0cdfcb2e8 to your computer and use it in GitHub Desktop.
Save pxwee5/59b46330693a2c5fa18556a0cdfcb2e8 to your computer and use it in GitHub Desktop.
Static Vue SFC
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello World</title>
<script type="module" src="./js/app.js"></script>
</head>
<body>
<h1>Static HTML With Vue.js Single File Component</h1>
<div id="app">
<span>Hello</span>
<app-world></app-world>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment