Created
December 18, 2018 08:08
-
-
Save terwer/0f9e19c1a2f345e04c2eb91609489026 to your computer and use it in GitHub Desktop.
A Vue start
This file contains hidden or 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> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"> | |
<title>Vue</title> | |
<link href="https://cdn.staticfile.org/material-design-iconic-font/2.2.0/css/material-design-iconic-font.css" rel="stylesheet"/> | |
<link href="https://unpkg.com/[email protected]/dist/vuetify.min.css" rel="stylesheet"> | |
<style> | |
[v-cloak] { | |
display: none; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="app"> | |
<v-content v-cloak> | |
<v-container> | |
<h1 :title="msg">Hello, single Vue!</h1> | |
<!-- <router-view></router-view> --> | |
</v-container> | |
</v-content> | |
</div> | |
<!-- development version, includes helpful console warnings --> | |
<script src="https://unpkg.com/vue/dist/vue.js"></script> | |
<!-- vuetify --> | |
<script src="https://unpkg.com/[email protected]/dist/vuetify.min.js"></script> | |
<script> | |
var app = new Vue({ | |
el: '#app', | |
data: { | |
msg: 'Hello' | |
} | |
}) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment