import Vue from 'vue'; // 导入 Spotlight import Spotlight from "spotlight-ui"; // 导入 样式 import 'spotlight-ui/lib/style/index.css'; import App from './App.vue'; // 引用 Vue.use(Spotlight); new Vue({ el: '#app', render: h => h(App) });