Last active
November 17, 2017 03:27
-
-
Save ankitsinghaniyaz/8180556e8f1d45b203f611cb948b7d25 to your computer and use it in GitHub Desktop.
Vue with Rails - Pack File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue/dist/vue.esm'; | |
// I am using elements UI for the UI components | |
// you can find them here, but you can do without them | |
// http://element.eleme.io/#/en-US | |
import ElementUI from 'element-ui'; | |
// This the .vue file that we will create next | |
import DeviseRegistrationsNewView from 'views/devise/registrations/new.vue'; | |
// It tells vue to register ElementUI, so that we can use it | |
Vue.use(ElementUI); | |
// creating a new vue instance | |
const integrationIndex = new Vue({ | |
// I am telling vue to look for the below id and | |
// mount my view into that id | |
// it is super important, make sure you spell it right at all places | |
el: '#devise-registrations-new-view', | |
// this is simple vue component registration | |
// if you want to use a component in the view you'll have to register it | |
components: { | |
'devise-registrations-new-view': DeviseRegistrationsNewView | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment