Last active
November 28, 2019 06:56
-
-
Save crookse/65873b6fc86502ad534cd9103c621748 to your computer and use it in GitHub Desktop.
Vue: Automate Your Routing - index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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