Skip to content

Commit

Permalink
Reverted unintended change
Browse files Browse the repository at this point in the history
  • Loading branch information
leondore committed Aug 22, 2023
1 parent 459b8e5 commit 2d924f0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
2 changes: 1 addition & 1 deletion example/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</template>

<script>
import { JoditEditor } from '../src/wrapper.js'
import { JoditEditor } from '../src/wrapper'
export default {
name: 'App',
Expand Down
2 changes: 2 additions & 0 deletions example/main.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { createApp } from 'vue'
import App from './App.vue'
import JoditVue from '../src/wrapper'

const app = createApp(App)
app.use(JoditVue)
app.config.productionTip = false

app.mount('#app')

0 comments on commit 2d924f0

Please sign in to comment.