目前,vuelidate 2.x暂时还没发布正式版本,而如果需要适配Vue 3.x,则需要自己编译,编译过程如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
$ brew install npm $ brew install yarn $ npm install bili -g $ git clone https://github.com/vuelidate/vuelidate.git # 如果需要编译umd版本,目前需要使用下面的仓库 # git clone https://github.com/wangqiang1588/vuelidate.git $ cd vuelidate $ cd packages $ cd vuelidate $ npm run build # 当前目录下的dist/index.umd.js即是目标文件,拷贝出来即可 $ cd .. $ cd validators $ npm run build # 当前目录下的dist/index.umd.js即是目标文件,拷贝出来即可 |