文章分类 -  vue

摘要:在computed中定义 computed:{ textTotal(){ return function(value,percentage){ return value+'('+percentage+'%)' } }, }, 然后使用 {{textTotal(text1,text2)}} 阅读全文
posted @ 2021-11-02 11:40 保洁叔叔 阅读(87) 评论(0) 推荐(0)
摘要:因为vue服务是基于nodeJs运行的,所以需要先到nodeJs官网下载node,并安装好! 在vue中会经常用到npm(npm包集成在node中,所以不需要单独安装,但因为npm包内含有国外资源,所以会比较慢,可以再次安装cnpm或year) 下面开始安装脚手架: ① 首先打开cmd命令行:执行  阅读全文
posted @ 2021-09-11 12:12 保洁叔叔 阅读(243) 评论(0) 推荐(0)