Skip to content

Commit 6fdda4f

Browse files
author
Patrick Housley
committed
Basic vue app setup.
1 parent 0299ca2 commit 6fdda4f

23 files changed

+5218
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Runtime data
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# OS generated files #
11+
.DS_Store
12+
ehthumbs.db
13+
Icon?
14+
Thumbs.db
15+
16+
# Node Files #
17+
/node_modules
18+
npm-debug.log
19+
20+
# IDE #
21+
.idea/
22+
*.swp
23+
.vscode/

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8

browserslist

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
last 3 version
2+
not ie < 11
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
declare module '*.scss' {
2+
import Vue = require('vue')
3+
interface Template {
4+
<V extends Vue>(options: Vue.ComponentOptions<V>): Vue.ComponentOptions<V>
5+
<V extends typeof Vue>(component: V): V
6+
}
7+
const template: Template
8+
export = template
9+
}
10+
11+
declare module '*.html' {
12+
import Vue = require('vue')
13+
interface Template {
14+
<V extends Vue>(options: Vue.ComponentOptions<V>): Vue.ComponentOptions<V>
15+
<V extends typeof Vue>(component: V): V
16+
}
17+
const template: Template
18+
export = template
19+
}

dist/app.cf9c9f62e50a548fe235.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/app.cf9c9f62e50a548fe235.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="x-ua-compatible" content="ie=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title>inversify-vue-test</title>
8+
</head>
9+
10+
<body>
11+
12+
<div id="app-main">
13+
</div>
14+
15+
<script type="text/javascript" src="/vendors.cf9c9f62e50a548fe235.js"></script><script type="text/javascript" src="/app.cf9c9f62e50a548fe235.js"></script><script type="text/javascript" src="/styles.cf9c9f62e50a548fe235.js"></script></body>
16+
</html>

dist/stats.json

+1
Large diffs are not rendered by default.

dist/styles.cf9c9f62e50a548fe235.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/styles.cf9c9f62e50a548fe235.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vendors.cf9c9f62e50a548fe235.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vendors.cf9c9f62e50a548fe235.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)