mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
dec5d665a3
* feat: change to import scss Change the import css to import scss to facilitate style modification * fix: fixed: storybook support scss file fixed: storybook support scss file * chore: remove redundant code in webpack.config.js Remove redundant code in webpack.config.js
9 lines
209 B
JavaScript
9 lines
209 B
JavaScript
import { createApp } from 'vue'
|
|
import install from 'element-plus'
|
|
import App from './play/index.vue'
|
|
import '../packages/theme-chalk/src/index.scss'
|
|
const app = createApp(App)
|
|
install(app)
|
|
app.mount('#app')
|
|
|