Skip to content

Commit

Permalink
fix bad naming conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
AtofStryker committed Jun 21, 2019
1 parent 57e1804 commit cfe90b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/component-example-jsx/example/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

import Vue from 'vue'
import ComponentExamplePlain from "@vue-mono/component-example-jsx"
import ComponentExampleJSX from "@vue-mono/component-example-jsx"

new Vue
({
el: '#app',
template: '<ComponentExamplePlain/>',
components: { ComponentExamplePlain: ComponentExamplePlain }
template: '<ComponentExampleJSX/>',
components: { ComponentExampleJSX: ComponentExampleJSX }
});

0 comments on commit cfe90b9

Please sign in to comment.