We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55f79db commit f6a99d4Copy full SHA for f6a99d4
demo/src/components/HelloWorld.vue
@@ -55,15 +55,9 @@
55
</template>
56
57
<script>
58
-import { FocusLoop } from '../../vue-focus-loop'
59
-
60
export default {
61
name: 'HelloWorld',
62
63
- components: {
64
- FocusLoop
65
- },
66
67
props: {
68
msg: String
69
},
demo/src/main.js
@@ -1,8 +1,10 @@
1
import Vue from 'vue'
2
import App from './App.vue'
3
+import VueFocusLoop from '../../src'
4
5
Vue.config.productionTip = false
6
+Vue.use(VueFocusLoop)
7
8
new Vue({
- render: h => h(App),
9
+ render: h => h(App)
10
}).$mount('#app')
0 commit comments