PluginProbe
Plugin Detective – Troubleshooting Conflicts / 1.1.4
Plugin Detective – Troubleshooting Conflicts v1.1.4
1.2.35 1.2.33 1.2.32 1.2.31 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2 1.2.1 1.2.10 1.2.12 1.2.13 1.2.14 1.2.16 1.2.19 1.2.20 1.2.22 1.2.23 1.2.24 All 54 releases
plugin-detective / troubleshoot / app / src / main.js

main.js in Plugin Detective – Troubleshooting Conflicts 1.1.4, at troubleshoot/app/src/main.js

19 lines 439 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 // The Vue build version to load with the `import` command
2 // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
3 import Vue from 'vue'
4 import App from './App'
5 import router from './router'
6 import VueMaterial from 'vue-material'
7
8 Vue.config.productionTip = false
9
10 Vue.use(VueMaterial)
11
12 /* eslint-disable no-new */
13 new Vue({
14 el: '#app',
15 router,
16 template: '<App/>',
17 components: { App }
18 })
19