Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

jml0128 / xrk-bi

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • xrk-bi
  • src
  • main.js
  • web's avatar
    fix · aaa71de4
    web committed May 23, 2022
    aaa71de4
main.js 288 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * @Description:
 * @Date: 2021-01-28 23:29:19
 */
import 'babel-polyfill';
import Vue from 'vue';
import App from './App';
import Xrk from './lib/index.js';
Vue.config.productionTip = false;
Vue.use(Xrk);

/* eslint-disable no-new */
new Vue({
  el: '#app',
  render: h => h(App)
});