提交 7663cce5 authored 作者: 王鹏飞's avatar 王鹏飞

add example config file

上级 2d214e28
{
"semi": false,
"singleQuote": true
}
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
'@vue/cli-plugin-babel/preset',
['@babel/preset-env', { modules: false }]
],
plugins: [
[
'component',
{
libraryName: 'element-ui',
styleLibraryName: 'theme-chalk'
}
]
]
}
<template>
<div id="app">
<vue-login></vue-login>
</div>
</template>
<script>
export default {
name: 'app',
components: {}
}
</script>
import Vue from 'vue'
import App from './App.vue'
import VueLogin from '../src/index'
Vue.use(VueLogin)
Vue.config.productionTip = false
new Vue({
render: h => h(App),
render: h => h(App)
}).$mount('#app')
......@@ -8,7 +8,10 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"@babel/preset-env": "^7.7.7",
"@ezijing/vue-form": "^0.1.5",
"core-js": "^3.4.3",
"element-ui": "^2.13.0",
"vue": "^2.6.10"
},
"devDependencies": {
......@@ -16,6 +19,7 @@
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"babel-eslint": "^10.0.3",
"babel-plugin-component": "^1.1.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"sass": "^1.23.7",
......
......@@ -4,7 +4,6 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>vue-login</title>
</head>
<body>
......
<template>
<div id="app">
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</div>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'app',
components: {
HelloWorld
}
}
</script>
<style lang="scss">
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
<template>
<div class="ezijing-component-wrapper">
<el-dialog
class="ezijing-dialog"
:visible.sync="dialogVisible"
:show-close="false"
:close-on-click-modal="false"
>
<components :is="activeComponent" @onLogin="login" @onRegister="register"></components>
</el-dialog>
</div>
</template>
<script>
import Login from './Login'
import Register from './Register'
export default {
name: 'VueLogin',
components: { Login, Register },
data() {
return {
dialogVisible: true,
openType: 1
}
},
computed: {
activeComponent() {
return this.openType ? 'login' : 'register'
}
},
methods: {
login() {
this.openType = 1
},
register() {
this.openType = 0
},
async logout() {}
}
}
</script>
<style lang="scss" scoped>
.ezijing-component-wrapper {
max-width: 480px;
margin: 0 auto;
background-color: #fff;
}
.ezijing-dialog {
::v-deep.el-dialog__header {
display: none;
}
::v-deep.el-dialog__body {
padding: 0;
}
}
</style>
\ No newline at end of file
<template>
<div class="ezj-login">
<div class="ezj-login-hd">
<ul class="ezj-login-hd__tabs">
<li
:class="{'ezj-login-hd__tab': true, 'is-active': loginType === 0}"
@click="handleChangeLogin(0)"
>账号登录</li>
<li
:class="{'ezj-login-hd__tab': true, 'is-active': loginType === 1}"
@click="handleChangeLogin(1)"
>手机验证码登录</li>
</ul>
</div>
<div class="ezj-login-bd">
<component :is="currentComponent"></component>
<el-button>登录</el-button>
<el-checkbox v-model="isRemember">记住我</el-checkbox>
<p>
没有账号?
<el-button type="text" @click="$emit('onRegister')">立即注册</el-button>
</p>
</div>
<div class="ezj-login-ft">
<p>其他登录方式</p>
</div>
</div>
</template>
<script>
import AccountLogin from '@/components/AccountLogin'
import PhoneLogin from '@/components/PhoneLogin'
export default {
name: 'ezj-login',
components: { AccountLogin, PhoneLogin },
props: {},
data() {
return {
isRemember: false,
loginType: 0
}
},
computed: {
currentComponent() {
return this.loginType === 0 ? 'AccountLogin' : 'PhoneLogin'
}
},
methods: {
handleChangeLogin(loginType) {
console.log(loginType)
this.loginType = loginType
}
}
}
</script>
<style lang="scss" scoped>
.ezj-login-hd {
border-bottom: 1px solid #f1f1f1;
}
.ezj-login-hd__tabs {
display: flex;
align-items: center;
justify-content: center;
list-style: none;
padding: 0;
margin: 0;
}
.ezj-login-hd__tab {
flex: 1;
text-align: center;
line-height: 40px;
border-left: 1px solid #f1f1f1;
cursor: pointer;
&:first-child {
border-left: none;
}
&.is-active {
text-decoration: underline;
}
}
.ezj-login-bd {
padding: 50px 0;
}
.ezj-login-ft {
border-top: 1px solid #d8dce6;
p {
margin: 0;
line-height: 50px;
text-align: center;
}
}
</style>
\ No newline at end of file
<template>
<div class="register">
<el-form ref="form" :model="form">
<el-form-item>
<el-input
v-model="form.account"
placeholder="2-30个字符,支持中英文、数字"
minlength="2"
maxlength="30"
>
<i slot="prefix" class="input-prefix">昵称</i>
</el-input>
</el-form-item>
<el-form-item>
<el-input
type="password"
v-model="form.password"
placeholder="6-20个字符,只能数字、字母、标点符号"
minlength="6"
maxlength="20"
>
<i slot="prefix" class="input-prefix">密码</i>
</el-input>
</el-form-item>
</el-form>
<el-button>注册</el-button>
<p>
已账号?
<el-button type="text" @click="$emit('onLogin')">请登录</el-button>
</p>
</div>
</template>
<script>
export default {
name: 'ezj-register',
props: {},
data() {
return {
form: {}
}
}
}
</script>
<style lang="scss" scoped>
.register {
::v-deep.el-input--prefix .el-input__inner {
padding-left: 40px;
}
.input-prefix {
font-style: normal;
}
}
</style>
\ No newline at end of file
!function(a,b,c){function d(a){var c="default";a.self_redirect===!0?c="true":a.self_redirect===!1&&(c="false");var d=b.createElement("iframe"),e="https://open.weixin.qq.com/connect/qrconnect?appid="+a.appid+"&scope="+a.scope+"&redirect_uri="+a.redirect_uri+"&state="+a.state+"&login_type=jssdk&self_redirect="+c+'&styletype='+(a.styletype || '')+'&sizetype='+(a.sizetype || '')+'&bgcolor='+(a.bgcolor || '')+'&rst='+(a.rst || '');e+=a.style?"&style="+a.style:"",e+=a.href?"&href="+a.href:"",d.src=e,d.frameBorder="0",d.allowTransparency="true",d.scrolling="no",d.width="300px",d.height="400px";var f=b.getElementById(a.id);f.innerHTML="",f.appendChild(d)}a.WxLogin=d}(window,document);
\ No newline at end of file
<template>
<div class="account-login">
<el-form ref="form" :model="ruleForm" :rules="rules">
<el-form-item>
<el-input v-model="ruleForm.login_name" placeholder="请输入邮箱或用户名">
<i slot="prefix" class="el-input__icon el-icon-mobile-phone"></i>
</el-input>
</el-form-item>
<el-form-item>
<el-input type="password" v-model="ruleForm.password" placeholder="请输入密码">
<i slot="prefix" class="el-input__icon el-icon-lock"></i>
</el-input>
</el-form-item>
</el-form>
</div>
</template>
<script>
export default {
name: 'AccountLogin',
data() {
return {
ruleForm: {
login_name: '',
password: ''
},
rules: {
login_name: [
{ required: true, message: '请输入邮箱或用户名', trigger: 'blur' }
],
password: [{ required: true, message: '请输入密码', trigger: 'blur' }]
}
}
},
computed: {
form() {
return this.$refs['form']
}
},
methods: {
validate(...arg) {
return this.form.validate(arg)
}
}
}
</script>Í
\ No newline at end of file
<template>
<div class="argument">
<div class="agreement-content">
<p>紫荆教育十分重视您个人信息的保密性和安全性。我们将按照本隐私政策尽合理的努力保护您的个人信息(下称“个人信息”,定义见下文)的安全。本隐私政策中使用的“我们”均指紫荆教育。</p>
<p>本隐私政策仅适用于我们通过紫荆教育网站(下称“本网站”,包含ezijing.com域名下的所有内容和页面)收集的信息,不适用于我们可能通过其他方式向您收集的信息(例如,本隐私政策不适用于您可能通过电话、传真或日常信函向我们提供的信息)。</p>
<h5>用户名和发布</h5>
<p>您在我们网站上发表的评论和其他信息可能被本网站的其他访问者浏览和下载。为此,我们鼓励您在决定是否在其他参与者可浏览页面上发布可能显示您的身份的任何信息时慎重思考。</p>
<h5>关于在国外处理的同意</h5>
<p>通过访问本网站或向紫荆教育提供信息,您理解并明确同意我们为本隐私政策和紫荆教育服务条款所约定的目的在中华人民共和国、其他国家和地区收集、使用、披露和保存信息。您特此同意紫荆教育依本隐私政策收集、使用、披露和保存您的个人信息,包括但不限于在紫荆教育和本隐私政策所述的第三方、附属机构及分支机构之间转移您的个人数据。为进一步确定,关于本条所述的转移信息的任何同意应视为包含您同意将适用的个人信息转移至另一司法区域,该区域的隐私保护程度可能与您所在国家的隐私保护程度不同。 如果您不同意本隐私政策的条款,您无权访问、浏览或注册本网站。</p>
<p>如果您选择不向我们提供本网站为您提供各种服务所必要的信息,您可能无法创建用户帐号,我们可能无法向您提供该等服务。</p>
<h5>个人信息</h5>
<p>本隐私策略使用的“个人信息”,您使用本网站时(例如您注册用户帐号或经本网站进行交易时)可能向我们提供的关于您的任何信息,可能包括但不限于您的姓名、联系信息、性别、出生日期和职业。我们尽力把个人信息的收集范围控制在为满足商业和法律法规要求,为特定的本网站的行为所需要的范围之内。</p>
<h5>我们收集哪些信息以及我们如何使用这些信息</h5>
<p>当您注册用户帐号,参加在线课程,注册付费证明,向我们发送电子邮件和/或参与公共论坛时,我们将收集信息,包括上述个人信息。我们也收集关于学生表现和学习模式的使用信息。此外,我们还记录显示以下内容的信息:本网站哪些页面被访问,其被访问的顺序和被访问的时间,哪些超链接和其他用户界面控件被使用等。</p>
<p>我们可能登录本网站的每个用户所使用的IP地址、操作系统和浏览器软件,我们可能可以从IP地址确定用户的互联网服务提供商和其连接点的地理位置。我们将适用各种网络分析工具收集这些信息。一些信息将通过Cookie(即本网站可以接触到的、存在您电脑上的、存储着有关您的信息的小文本文件)收集。您应该能够控制您的Web浏览器如何以及是否接受Cookie。大多数浏览器都在工具栏上的“帮助”部分提供关于如何重置浏览器以拒绝Cookie的说明。如果您拒绝我们的Cookie,本网站的许多功能和服务可能无法正常工作。</p>
<h5>用于个性化和教学水平提高</h5>
<p>我们的目标是尽可能为现在和未来的访问者提供最好的学习体验。为进一步实现此目标,我们有时会向不同的用户呈现不同版本的课程资料和软件。之所以这么做,是为了向个人学生提供个性化体验(评估学生的学习水平和学习风格,为其呈现最合适的资料),评估我们的课程资料的有效性,增进我们对学习过程的理解,以及提高我们提供的内容的有效性。我们可能发表或以其他形式公开此过程的结果,但除非本隐私政策另有约定允许,上述发表或公开披露均不会包含个人信息。</p>
<h5>链接到其他网站</h5>
<p>本网站包含了前往第三方(包括其他内容提供者以及某些服务供应商,如代表紫荆教育处理支付的服务商等)发布的网站的链接。这些网站不在我们控制范围之内,您确认并同意,除非本隐私政策中另有约定,我们不必为该等网站收集和使用您的信息承担责任。我们鼓励您在被转接至第三方网站时了解并查阅您访问和使用的每个网站的隐私政策。</p>
<h5>安全</h5>
<p>紫荆教育设计了一套保护其持有或控制的个人信息的程序,但是互联网传输方法或电子存储方法均非100%安全,因此紫荆教育无法保证个人信息的绝对安全。</p>
<h5>修改隐私政策</h5>
<p>请注意,我们可能随时审查并修改本隐私政策。本隐私政策修改后,本隐私政策链接将包含注记“更新(日期)”,这意味着您应查阅新条款,任何修改在本页面上发布后立即生效,并附更新后的生效日期。至少在更新后七(7)天内,本隐私政策链接将显示更新注记。在本网站进行任何修改之后,您访问本网站即视为您已同意修改后的本隐私政策和本网站的其他全部修改。如果您错过了前述通知,请定期访问本网页以了解本隐私政策的最新版本。</p>
<h5>未成年人</h5>
<p>本网站并非为13周岁以下的个人设计,紫荆教育并未明知而收集前述年龄段个人的数据。如果我们知悉任何13周岁以下个人进行了注册,我们将从记录中删除任何相关个人信息。</p>
<h5>隐私顾虑</h5>
<p>如果您有隐私顾虑,或者披露了您希望保密的数据,或者希望访问我们持有的关于您的信息,请联系我们:service@ezijing.com。</p>
<em>生效日期 :2014年9月15日</em>
</div>
</div>
</template>
<script>
export default {
name: 'RegisteArgument'
}
</script>
\ No newline at end of file
<template>
<el-button :disabled="currentDisabled" @click="start">{{curretnValue}}</el-button>
</template>
<script>
export default {
name: 'CountdownButton',
props: {
step: { type: Number, default: 1000 },
disabled: { type: Boolean, default: false },
seconds: { type: Number, default: 60 },
defaultValue: { type: String, default: '发送验证码' }
},
data() {
return {
currentDisabled: false,
currentSeconds: 0,
timer: null
}
},
computed: {
curretnValue() {
let longTime = this.seconds - this.currentSeconds
return longTime < this.seconds ? `${longTime} S` : this.defaultValue
}
},
methods: {
genTimer() {
this.timer && clearInterval(this.timer)
this.timer = setInterval(() => {
this.currentSeconds++
if (this.currentSeconds === this.seconds) {
this.stop()
}
}, this.step)
},
start() {
this.currentDisabled = true
this.genTimer()
},
stop() {
this.timer && clearInterval(this.timer)
this.currentSeconds = 0
this.currentDisabled = false
}
}
}
</script>
\ No newline at end of file
<template>
<div class="hello">
<h1>{{ msg }}</h1>
<p>
For a guide and recipes on how to configure / customize this project,<br>
check out the
<a href="https://cli.vuejs.org" target="_blank" rel="noopener">vue-cli documentation</a>.
</p>
<h3>Installed CLI Plugins</h3>
<ul>
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel" target="_blank" rel="noopener">babel</a></li>
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint" target="_blank" rel="noopener">eslint</a></li>
</ul>
<h3>Essential Links</h3>
<ul>
<li><a href="https://vuejs.org" target="_blank" rel="noopener">Core Docs</a></li>
<li><a href="https://forum.vuejs.org" target="_blank" rel="noopener">Forum</a></li>
<li><a href="https://chat.vuejs.org" target="_blank" rel="noopener">Community Chat</a></li>
<li><a href="https://twitter.com/vuejs" target="_blank" rel="noopener">Twitter</a></li>
<li><a href="https://news.vuejs.org" target="_blank" rel="noopener">News</a></li>
</ul>
<h3>Ecosystem</h3>
<ul>
<li><a href="https://router.vuejs.org" target="_blank" rel="noopener">vue-router</a></li>
<li><a href="https://vuex.vuejs.org" target="_blank" rel="noopener">vuex</a></li>
<li><a href="https://github.com/vuejs/vue-devtools#vue-devtools" target="_blank" rel="noopener">vue-devtools</a></li>
<li><a href="https://vue-loader.vuejs.org" target="_blank" rel="noopener">vue-loader</a></li>
<li><a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">awesome-vue</a></li>
</ul>
</div>
</template>
<script>
export default {
name: 'HelloWorld',
props: {
msg: String
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
h3 {
margin: 40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>
<template>
<div class="phone-login">
<el-form ref="form" :model="ruleForm" :rules="rules">
<el-form-item>
<el-input v-model="ruleForm.login_name" placeholder="请输入手机号">
<i slot="prefix" class="el-input__icon el-icon-mobile-phone"></i>
</el-input>
</el-form-item>
<el-form-item>
<el-input v-model="ruleForm.password" placeholder="请输入验证码">
<i slot="prefix" class="el-input__icon el-icon-lock"></i>
<template slot="append">
<countdown-button></countdown-button>
</template>
</el-input>
</el-form-item>
</el-form>
</div>
</template>
<script>
import CountdownButton from './CountdownButton'
export default {
name: 'PhoneLogin',
components: { CountdownButton },
data() {
return {
ruleForm: {
login_name: '',
password: ''
},
rules: {
login_name: [
{ required: true, message: '请输入手机号', trigger: 'blur' }
],
password: [{ required: true, message: '请输入验证码', trigger: 'blur' }]
}
}
},
computed: {
form() {
return this.$refs['form']
}
},
methods: {
validate(...arg) {
return this.form.validate(arg)
}
}
}
</script>Í
\ No newline at end of file
<template>
<div class="phone-login"></div>
</template>
<script>
export default {
name: 'PhoneLogin'
}
</script>Í
\ No newline at end of file
import { Input, Checkbox, Button, Form, FormItem, Dialog } from 'element-ui'
import Login from './Index.vue'
Login.install = function(Vue) {
Vue.use(Input)
Vue.use(Checkbox)
Vue.use(Button)
Vue.use(Form)
Vue.use(FormItem)
Vue.use(Dialog)
Vue.component(Login.name, Login)
}
export default Login
module.exports = {
pages: {
index: {
entry: 'examples/main.js'
}
}
}
......@@ -130,6 +130,14 @@
dependencies:
"@babel/types" "^7.7.4"
"@babel/helper-module-imports@7.0.0-beta.35":
version "7.0.0-beta.35"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0-beta.35.tgz#308e350e731752cdb4d0f058df1d704925c64e0a"
integrity sha512-vaC1KyIZSuyWb3Lj277fX0pxivyHwuDU4xZsofqgYAbkDxNieMg2vuhzP5AgMweMY7fCQUMTi+BgPqTLjkxXFg==
dependencies:
"@babel/types" "7.0.0-beta.35"
lodash "^4.2.0"
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.7.4":
version "7.7.4"
resolved "https://registry.npm.taobao.org/@babel/helper-module-imports/download/@babel/helper-module-imports-7.7.4.tgz?cache=0&sync_timestamp=1574466791934&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.7.4.tgz#e5a92529f8888bf319a6376abfbd1cebc491ad91"
......@@ -613,10 +621,10 @@
"@babel/helper-create-regexp-features-plugin" "^7.7.4"
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/preset-env@^7.7.4":
"@babel/preset-env@^7.7.4", "@babel/preset-env@^7.7.7":
version "7.7.7"
resolved "https://registry.npm.taobao.org/@babel/preset-env/download/@babel/preset-env-7.7.7.tgz#c294167b91e53e7e36d820e943ece8d0c7fe46ac"
integrity sha1-wpQWe5HlPn422CDpQ+zo0Mf+Rqw=
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.7.7.tgz#c294167b91e53e7e36d820e943ece8d0c7fe46ac"
integrity sha512-pCu0hrSSDVI7kCVUOdcMNQEbOPJ52E+LrQ14sN8uL2ALfSqePZQlKrOy+tM4uhEdYlCHi4imr8Zz2cZe9oSdIg==
dependencies:
"@babel/helper-module-imports" "^7.7.4"
"@babel/helper-plugin-utils" "^7.0.0"
......@@ -701,6 +709,15 @@
globals "^11.1.0"
lodash "^4.17.13"
"@babel/types@7.0.0-beta.35":
version "7.0.0-beta.35"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.35.tgz#cf933a9a9a38484ca724b335b88d83726d5ab960"
integrity sha512-y9XT11CozHDgjWcTdxmhSj13rJVXpa5ZXwjjOiTedjaM0ba5ItqdS02t31EhPl7HtOWxsZkYCCUNrSfrOisA6w==
dependencies:
esutils "^2.0.2"
lodash "^4.2.0"
to-fast-properties "^2.0.0"
"@babel/types@^7.0.0", "@babel/types@^7.7.4":
version "7.7.4"
resolved "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.7.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.7.4.tgz#516570d539e44ddf308c07569c258ff94fde9193"
......@@ -710,6 +727,14 @@
lodash "^4.17.13"
to-fast-properties "^2.0.0"
"@ezijing/vue-form@^0.1.5":
version "0.1.5"
resolved "https://registry.yarnpkg.com/@ezijing/vue-form/-/vue-form-0.1.5.tgz#7ca0a2b60141aa9032e9c175269cc4008fabb542"
integrity sha512-/uwrm+wu1bGp8IPpLX9oE+gcyqa+l0xyzo2F/h2gnbs799pJnBdzveLNQdZAlO+5EJ5y6aY3Nm4KlWWT0JxKqg==
dependencies:
axios "^0.19.0"
element-ui "^2.13.0"
"@hapi/address@2.x.x":
version "2.1.4"
resolved "https://registry.npm.taobao.org/@hapi/address/download/@hapi/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5"
......@@ -1445,6 +1470,13 @@ async-limiter@~1.0.0:
resolved "https://registry.npm.taobao.org/async-limiter/download/async-limiter-1.0.1.tgz?cache=0&sync_timestamp=1574271725892&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fasync-limiter%2Fdownload%2Fasync-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
integrity sha1-3TeelPDbgxCwgpH51kwyCXZmF/0=
async-validator@~1.8.1:
version "1.8.5"
resolved "https://registry.yarnpkg.com/async-validator/-/async-validator-1.8.5.tgz#dc3e08ec1fd0dddb67e60842f02c0cd1cec6d7f0"
integrity sha512-tXBM+1m056MAX0E8TL2iCjg8WvSyXu0Zc8LNtYqrVeyoL3+esHRZ4SieE9fKQyyU09uONjnMEjrNBMqT0mbvmA==
dependencies:
babel-runtime "6.x"
async@^2.6.2:
version "2.6.3"
resolved "https://registry.npm.taobao.org/async/download/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
......@@ -1485,6 +1517,14 @@ aws4@^1.8.0:
resolved "https://registry.npm.taobao.org/aws4/download/aws4-1.9.0.tgz#24390e6ad61386b0a747265754d2a17219de862c"
integrity sha1-JDkOatYThrCnRyZXVNKhchnehiw=
axios@^0.19.0:
version "0.19.0"
resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.0.tgz#8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8"
integrity sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ==
dependencies:
follow-redirects "1.5.10"
is-buffer "^2.0.2"
babel-eslint@^10.0.3:
version "10.0.3"
resolved "https://registry.npm.taobao.org/babel-eslint/download/babel-eslint-10.0.3.tgz?cache=0&sync_timestamp=1575991707525&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-eslint%2Fdownload%2Fbabel-eslint-10.0.3.tgz#81a2c669be0f205e19462fed2482d33e4687a88a"
......@@ -1497,6 +1537,11 @@ babel-eslint@^10.0.3:
eslint-visitor-keys "^1.0.0"
resolve "^1.12.0"
babel-helper-vue-jsx-merge-props@^2.0.0:
version "2.0.3"
resolved "https://registry.yarnpkg.com/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-2.0.3.tgz#22aebd3b33902328e513293a8e4992b384f9f1b6"
integrity sha512-gsLiKK7Qrb7zYJNgiXKpXblxbV5ffSwR0f5whkPAaBAR4fhi6bwRZxX9wBlIc5M/v8CCkXUbXZL4N/nSE97cqg==
babel-loader@^8.0.6:
version "8.0.6"
resolved "https://registry.npm.taobao.org/babel-loader/download/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb"
......@@ -1507,6 +1552,13 @@ babel-loader@^8.0.6:
mkdirp "^0.5.1"
pify "^4.0.1"
babel-plugin-component@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/babel-plugin-component/-/babel-plugin-component-1.1.1.tgz#9b023a23ff5c9aae0fd56c5a18b9cab8c4d45eea"
integrity sha512-WUw887kJf2GH80Ng/ZMctKZ511iamHNqPhd9uKo14yzisvV7Wt1EckIrb8oq/uCz3B3PpAW7Xfl7AkTLDYT6ag==
dependencies:
"@babel/helper-module-imports" "7.0.0-beta.35"
babel-plugin-dynamic-import-node@^2.2.0, babel-plugin-dynamic-import-node@^2.3.0:
version "2.3.0"
resolved "https://registry.npm.taobao.org/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f"
......@@ -1514,6 +1566,14 @@ babel-plugin-dynamic-import-node@^2.2.0, babel-plugin-dynamic-import-node@^2.3.0
dependencies:
object.assign "^4.1.0"
babel-runtime@6.x:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
dependencies:
core-js "^2.4.0"
regenerator-runtime "^0.11.0"
balanced-match@^1.0.0:
version "1.0.0"
resolved "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
......@@ -2336,6 +2396,11 @@ core-js-compat@^3.4.3, core-js-compat@^3.6.0:
browserslist "^4.8.2"
semver "7.0.0"
core-js@^2.4.0:
version "2.6.11"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
core-js@^3.4.3:
version "3.6.0"
resolved "https://registry.npm.taobao.org/core-js/download/core-js-3.6.0.tgz#2b854e451de1967d1e29896025cdc13a2518d9ea"
......@@ -2626,6 +2691,13 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
dependencies:
ms "2.0.0"
debug@=3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
dependencies:
ms "2.0.0"
debug@^3.0.0, debug@^3.1.1, debug@^3.2.5:
version "3.2.6"
resolved "https://registry.npm.taobao.org/debug/download/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
......@@ -2667,7 +2739,7 @@ deep-is@~0.1.3:
resolved "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
deepmerge@^1.5.2:
deepmerge@^1.2.0, deepmerge@^1.5.2:
version "1.5.2"
resolved "https://registry.npm.taobao.org/deepmerge/download/deepmerge-1.5.2.tgz?cache=0&sync_timestamp=1572279720382&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdeepmerge%2Fdownload%2Fdeepmerge-1.5.2.tgz#10499d868844cdad4fee0842df8c7f6f0c95a753"
integrity sha1-EEmdhohEza1P7ghC34x/bwyVp1M=
......@@ -2920,6 +2992,18 @@ electron-to-chromium@^1.3.322:
resolved "https://registry.npm.taobao.org/electron-to-chromium/download/electron-to-chromium-1.3.322.tgz#a6f7e1c79025c2b05838e8e344f6e89eb83213a8"
integrity sha1-pvfhx5AlwrBYOOjjRPbonrgyE6g=
element-ui@^2.13.0:
version "2.13.0"
resolved "https://registry.yarnpkg.com/element-ui/-/element-ui-2.13.0.tgz#f6bb04e5b0a76ea5f62466044b774407ba4ebd2d"
integrity sha512-KYsHWsBXYbLELS8cdfvgJTOMSUby3UEjvsPV1V1VmgJ/DdkOAS4z3MiOrPxrT9w2Cc5lZ4eVSQiGhYFR5NVChw==
dependencies:
async-validator "~1.8.1"
babel-helper-vue-jsx-merge-props "^2.0.0"
deepmerge "^1.2.0"
normalize-wheel "^1.0.1"
resize-observer-polyfill "^1.5.0"
throttle-debounce "^1.0.1"
elliptic@^6.0.0:
version "6.5.2"
resolved "https://registry.npm.taobao.org/elliptic/download/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762"
......@@ -3522,6 +3606,13 @@ flush-write-stream@^1.0.0:
inherits "^2.0.3"
readable-stream "^2.3.6"
follow-redirects@1.5.10:
version "1.5.10"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a"
integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==
dependencies:
debug "=3.1.0"
follow-redirects@^1.0.0:
version "1.9.0"
resolved "https://registry.npm.taobao.org/follow-redirects/download/follow-redirects-1.9.0.tgz#8d5bcdc65b7108fe1508649c79c12d732dcedb4f"
......@@ -4286,6 +4377,11 @@ is-buffer@^1.1.5:
resolved "https://registry.npm.taobao.org/is-buffer/download/is-buffer-1.1.6.tgz?cache=0&sync_timestamp=1569905599495&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-buffer%2Fdownload%2Fis-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
integrity sha1-76ouqdqg16suoTqXsritUf776L4=
is-buffer@^2.0.2:
version "2.0.4"
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623"
integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==
is-callable@^1.1.4, is-callable@^1.1.5:
version "1.1.5"
resolved "https://registry.npm.taobao.org/is-callable/download/is-callable-1.1.5.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-callable%2Fdownload%2Fis-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab"
......@@ -4796,7 +4892,7 @@ lodash.uniq@^4.5.0:
resolved "https://registry.npm.taobao.org/lodash.uniq/download/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.3:
lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.3, lodash@^4.2.0:
version "4.17.15"
resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
integrity sha1-tEf2ZwoEVbv+7dETku/zMOoJdUg=
......@@ -5310,6 +5406,11 @@ normalize-url@^3.0.0:
resolved "https://registry.npm.taobao.org/normalize-url/download/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
integrity sha1-suHE3E98bVd0PfczpPWXjRhlBVk=
normalize-wheel@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/normalize-wheel/-/normalize-wheel-1.0.1.tgz#aec886affdb045070d856447df62ecf86146ec45"
integrity sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU=
npm-run-path@^2.0.0:
version "2.0.2"
resolved "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-2.0.2.tgz?cache=0&sync_timestamp=1577052941951&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnpm-run-path%2Fdownload%2Fnpm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
......@@ -6425,6 +6526,11 @@ regenerate@^1.4.0:
resolved "https://registry.npm.taobao.org/regenerate/download/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
integrity sha1-SoVuxLVuQHfFV1icroXnpMiGmhE=
regenerator-runtime@^0.11.0:
version "0.11.1"
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
regenerator-runtime@^0.13.2:
version "0.13.3"
resolved "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5"
......@@ -6575,6 +6681,11 @@ requires-port@^1.0.0:
resolved "https://registry.npm.taobao.org/requires-port/download/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
resize-observer-polyfill@^1.5.0:
version "1.5.1"
resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
resolve-cwd@^2.0.0:
version "2.0.0"
resolved "https://registry.npm.taobao.org/resolve-cwd/download/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
......@@ -7442,6 +7553,11 @@ thread-loader@^2.1.3:
loader-utils "^1.1.0"
neo-async "^2.6.0"
throttle-debounce@^1.0.1:
version "1.1.0"
resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-1.1.0.tgz#51853da37be68a155cb6e827b3514a3c422e89cd"
integrity sha512-XH8UiPCQcWNuk2LYePibW/4qL97+ZQ1AN3FNXwZRBNPPowo/NRU5fAlDCSNBJIYCKbioZfuYtMhG4quqoJhVzg==
through2@^2.0.0:
version "2.0.5"
resolved "https://registry.npm.taobao.org/through2/download/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论