Skip to content

Instantly share code, notes, and snippets.

@crookse
Last active November 28, 2019 06:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crookse/65873b6fc86502ad534cd9103c621748 to your computer and use it in GitHub Desktop.
Save crookse/65873b6fc86502ad534cd9103c621748 to your computer and use it in GitHub Desktop.
Vue: Automate Your Routing - index.html
<!DOCTYPE html>
<html>
<head>
<title>Vue Automated Routing</title>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
<div id="vue_app_mount">
<div class="max-w-sm rounded overflow-hidden shadow-lg">
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2">My Vue Application</div>
<app></app>
</div>
</div>
</div>
<script src="assets/bundle.compiled.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment