Skip to content

Commit

Permalink
Ran prettier on examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Yev committed Jul 11, 2020
1 parent 809296e commit 170b16f
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 50 deletions.
13 changes: 0 additions & 13 deletions examples/nuxt/.editorconfig

This file was deleted.

1 change: 0 additions & 1 deletion examples/nuxt/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@ module.exports = {
'plugin:nuxt/recommended',
],
plugins: ['prettier'],
// add your custom rules here
rules: {},
}
4 changes: 0 additions & 4 deletions examples/nuxt/.prettierrc

This file was deleted.

2 changes: 1 addition & 1 deletion examples/nuxt/components/ExampleModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<script>
export default {
name: 'ExampleModal',
name: 'ExampleModal'
}
</script>

Expand Down
7 changes: 0 additions & 7 deletions examples/nuxt/components/README.md

This file was deleted.

7 changes: 0 additions & 7 deletions examples/nuxt/layouts/README.md

This file was deleted.

6 changes: 0 additions & 6 deletions examples/nuxt/pages/README.md

This file was deleted.

6 changes: 3 additions & 3 deletions examples/nuxt/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ import ExampleModal from '../components/ExampleModal'
export default {
components: {
ExampleModal,
ExampleModal
},
methods: {
click() {
this.$modal.show('example-modal')
},
},
}
}
}
</script>

Expand Down
7 changes: 0 additions & 7 deletions examples/nuxt/plugins/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/nuxt/plugins/vue-js-modal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Vue from 'vue'
import Modal from '../../dist/ssr.nocss'
import Modal from '../../../dist/ssr.nocss'

import '../../../dist/styles.css'

Expand Down

0 comments on commit 170b16f

Please sign in to comment.