fix(docs): fix wrong method name in quickstart.md (#1729)

Hi! There is a mistake in doc's, you used the wrong method, method `slice` will be correct.
This commit is contained in:
Max Novikov 2021-04-02 04:29:37 +03:00 committed by GitHub
parent fe3807b4f7
commit 1ab50ded03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,7 +129,7 @@ export default defineConfig({
libs: [{
libraryName: 'element-plus',
resolveStyle: (name) => {
name = name.splice(3)
name = name.slice(3)
return `element-plus/packages/theme-chalk/src/${name}.scss`;
},
resolveComponent: (name) => {