feat: add stackblitz playground

This commit is contained in:
Justineo
2021-09-19 15:34:14 +08:00
parent 8a2e1e3187
commit afb1c0f1ac
14 changed files with 127 additions and 40 deletions

View File

@@ -0,0 +1,4 @@
{
"installDependencies": true,
"startCommand": "npx vue-cli-service serve"
}

View File

@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="zh-Hans">
<html lang="{{ locale }}">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />

View File

@@ -0,0 +1,12 @@
{
"dependencies": {
"veui": "^2.1.3",
"veui-theme-dls": "^2.1.3",
"veui-theme-dls-icons": "^2.1.3",
"vue": "^2.6.14"
},
"devDependencies": {
"@vue/cli-service": "~5.0.0-beta.4",
"vue-template-compiler": "^2.6.14"
}
}

View File

@@ -0,0 +1,5 @@
module.exports = {
chainWebpack (config) {
config.resolve.alias.set('veui$', 'veui/dist/veui.esm')
}
}