core-js

Docusaurus fails with IE: Object doesn't support property or method 'assign'

蓝咒 提交于 2019-12-07 20:14:51
问题 We are making a V2 Docusaurus website: https://www.10studio.tech. We have just realized that it does not work well in IE, for instance, IE11. The error message is: Object doesn't support property or method 'assign' . There are some packages to provide with IE compatibility such as core-js , but we don't know how to properly add it to Docusaurus v2. Does anyone know how to amend this? 回答1: The error message is telling you that object doesn't have an assign function . assign is a function which

vue-cli 3.0 初体验

ぃ、小莉子 提交于 2019-11-26 12:22:54
最近复习了下vue,突然发现vue-cli已经更新到3.0版本了,并且变化蛮大,看来要不停的学习,真是一入前端深似海。 安装步骤: 1、全局安装 npm install -g @vue/cli Vue CLI 的包名称由 vue-cli 改成了 @vue/cli。 如果你已经全局安装了旧版本的 vue-cli(1.x 或 2.x),你需要先通过 npm uninstall vue-cli -g 卸载它。 2、通过vue --version查看版本信息,来确定是否安装成功 E:\vue\Vueexample3.0\new-hello>vue --version 3.0.0 3、创建一个项目 ,cd到要创建项目的文件夹,输入下面命令 vue create new-hello 安装的过程中会提示设置选项 按Enter键选择preset或者default选项,如果手动选择,按键盘的向上的箭头,然后选择下面的信息 用上下箭头移到选项行,通过空格键控制选中或者取消,全部选择好后按Enter后,会提示保存为一个将来可复用的 preset,并输入保存的preset的名称(被保存的 preset 将会存在用户的 home 目录下一个名为 .vuerc 的 JSON 文件里),等项目创建完成后,会显示下面的界面,如果我们安装完vue-cli 3.0 后再装插件 可以用命令 vue add router