vue-sell icon indicating copy to clipboard operation
vue-sell copied to clipboard

:rice: Vue.js高仿饿了么外卖App课程源码 http://coding.imooc.com/class/74.html

Results 50 vue-sell issues
Sort by recently updated
recently updated
newest added

如题,通过同个局域网ip进行访问,手机的其他浏览器能打开本地运行项目(刚clone的,没做修改),就是手机uc访问时显示空白,但是手机uc访问老师贴出来的二维码demo时却能打开,uc版本号v11.5.2.942,想问下这个是属于uc的问题吗?还是要做vue-cli中的什么修改?

在商品详情页中,对某个商品进行加入购物车操作时(仅仅是第一次添加该商品),无论如何点添加按钮,都只有小球动画,数量不发生改变

在iphone6 系统10.3.1 微信版本6.5.22 扫描后一片空白,但是用安卓的微信扫描可以打开。 不清楚是什么原因造成的..

1. 每一个使用v-for指令的元素都应该有一个key属性,且属性值不能相同,故对所有使用v-for指令的元素添加key属性,并绑定v-bind指令,从循环项中取值,保证唯一性。 2. shopcart的支付按钮背景色由totalPrice和minPrice的大小关系决定,totalPrice小于minPrice则使用默认色,反之通过添加enough类的方法即可达到修改颜色的目的,无需添加计算属性。该修改方案减少了一个类名和一个计算属性,逻辑关系也会更加清晰。

meunScroll应该拼写为menuScroll

源码shopcart关于小球的CSS有问题 应改为 ``` .ball-container { .ball { position: fixed; left: 32px; bottom: 22px; z-index: 200; .inner { width: 16px; height: 16px; border-radius: 50%; background: rgb(0, 160, 220); } &.drop-enter-active {...

**common/index.styl** @import './base' @import './icon' @import './mixin' 此文件配置了需要全局导入的styl文件 **main.js** ...... import "@/common/stylus/index.styl"; ...... main.js中全局导入 **问题:** 在App.vue中,为何还要再次导入? ..... @import "common/stylus/mixin.styl" .... 否则以下代码会报错,但是别的样式却可以正常使用。 border-1px(rgba(7, 17, 27,0.1)) 测试了很多次依然无效,请问有什么办法可以全局一次性导入吗?

黄老师,你好。 我在学习的过程中重新安装依赖时,总是报错: this dependency was not found evensource-polyfill in ./build/dev-client.js 但我安装完毕后,npm run dev还是有这个问题 同时还报错: these relative modules were not found ./src/main.js in multi app ./../[email protected]@webpack/buildin/module.js in ./[email protected]@wenpack-hot-middleware/client.js?noInfo=true&reload=true

Goods.vue line6: :class="{'current':currentIndex===index}" 不应使用‘===’, 替换为‘==’时功能生效