Skip to content

Instantly share code, notes, and snippets.

@terwer
Created December 18, 2018 08:08
Show Gist options
  • Save terwer/0f9e19c1a2f345e04c2eb91609489026 to your computer and use it in GitHub Desktop.
Save terwer/0f9e19c1a2f345e04c2eb91609489026 to your computer and use it in GitHub Desktop.
A Vue start
<!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/vuetify@1.0.17/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/vuetify@1.0.17/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