Skip to content
This repository was archived by the owner on Jun 14, 2018. It is now read-only.

Commit 43f9315

Browse files
committed
Use camel case for components and specs
1 parent db278df commit 43f9315

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<script>
99
import Vue = require("vue");
1010
11-
import Hello = require("./components/Hello");
11+
import Hello = require("./components/hello");
1212
1313
export default {
1414
name: "app",

template/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
44
{{/if_eq}}
55
import Vue = require("vue");
6-
import App = require("./App");
6+
import App = require("./app");
77

88
new Vue({
99
el: "#app",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { expect } from "chai";
22

33
import Vue = require("vue");
4-
import Hello = require("src/components/Hello");
4+
import Hello = require("src/components/hello");
55

66
describe("Hello.vue", () => {
77
it("should render correct contents", () => {

0 commit comments

Comments
 (0)