Skip to content
Snippets Groups Projects
Select Git revision
  • 2e3f687db926deb3c6e08f4b6268583562517c53
  • master default protected
  • last
  • finalmodify
  • transaction
  • YG
  • buy_with_email
  • 프론트엔드책목록받아오기
  • sell_YJ
  • login_with_session2
  • login-with-session
  • login_with_session
  • nodemailer완성
  • 프론트UI,디비통신완료
  • Atlas
  • mainPage
  • login
  • YJ
  • hj
  • YoonGu
20 results

main.js

Blame
  • main.js 521 B
    // The Vue build version to load with the `import` command
    // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
    import Vue from 'vue'
    import App from './App'
    import router from './router'
    
    import axios from 'axios'
    import Vuetify from 'vuetify'
    import 'vuetify/dist/vuetify.min.css'
    Vue.use(Vuetify)
    Vue.prototype.$http = axios
    Vue.config.productionTip = false
    /* eslint-disable no-new */
    new Vue({
      el: '#app',
      router,
      components: { App },
      template: '<App/>',
      render: h => h(App)
    })