Archived
1
0

initial base neochan app

This commit is contained in:
Jeff 2017-08-05 10:13:15 -04:00
parent aecbe2a5a9
commit f07a6faec6
3 changed files with 26 additions and 1 deletions

View File

@ -1,3 +1,3 @@
nntpchan.js
neochan.js
neochan.css
neochan.css

View File

@ -0,0 +1 @@
/** neochan js code */

View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet">
<link href="https://unpkg.com/vuetify/dist/vuetify.min.css" rel="stylesheet">
<title> Neochan UI </title>
</head>
<body>
<div id="app">
<v-app>
<main>
<v-container>Hello world</v-container>
</main>
</v-app>
</div>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vuetify/dist/vuetify.js"></script>
<script src="/static/neochan-app.js"></script>
<script>
new Vue({ el: '#app' })
</script>
</body>
</html>