mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
15 lines
231 B
JavaScript
15 lines
231 B
JavaScript
import Vue from 'vue'
|
|
|
|
import App from './components/App'
|
|
|
|
import truncate from 'vue-truncate'
|
|
|
|
Vue.use(truncate);
|
|
Vue.config.devtools = true;
|
|
// mount a root Vue instance
|
|
new Vue({
|
|
el: 'body',
|
|
components: {
|
|
app: App
|
|
}
|
|
}) |