码迷,mamicode.com
首页 >  
搜索关键字:vue bootstrap    ( 29561个结果
学习vue-filter
过滤器 用于文本格式化,数组数据的过滤和排序 全局过滤器 Vue.filter('',function(){}) 局部过滤器 new Vue({ el:"#app", filters:{ uppcase(){ } } }) 使用地方 管道符号添加到表达式后面 插值表达式 v-bind表达式 过滤器的 ...
分类:其他好文   时间:2021-05-24 13:00:08    阅读次数:0
vue学习
1.下载vue-cli3脚手架后,执行npm run serve 正常。执行npm run build 后,打开index.html文件后,console报错,找不到js文件。index.html文件里显示 We're sorry but vue-hello-world-ui-select does ...
分类:其他好文   时间:2021-05-24 12:59:50    阅读次数:0
5.15日记
1. leetcode2道(柱状图中最大矩形 最长连续序列) 2. 学习node.js 3. Vue.nexttick深入学习 4. Vue在created和mounted中发请求的区别 ...
分类:其他好文   时间:2021-05-24 12:51:27    阅读次数:0
Vue前端路由及异步组件
hash 和 history的区别 hash 有#,history 没有,Hash式基于锚点,History 模式 基于H5的History API hash 的#部分内容不会传给服务端, history 的所有内容都会给服务端,应用在部署的时候需要注意html的访问,因为无论访问什么/a,/b,/ ...
分类:其他好文   时间:2021-05-24 12:23:52    阅读次数:0
vue中使用alipayer播放视频
首先需要引用alipayer js和css 页面使用的引用方式不同 <template> <div :id="playerId"style="width:100%; height:100%;"> </div></template> <script> export default { name: 'R ...
分类:其他好文   时间:2021-05-24 11:00:02    阅读次数:0
Mac卸载vue不成功
npm install -g @vue/cli npm uninstall -g @vue/cli yarn global add @vue/cli yarn global remove @vue/cli 首先确定你的是npm安装的还是yarn安装的,要用对应的卸载方式 如果还是卸载不成功,那么有以 ...
分类:系统相关   时间:2021-05-24 10:59:47    阅读次数:0
component: resolve => require(['@/view/index.vue'], resolve)与component: index
require: 运行时调用,理论上可以运用在代码的任何地方, import:编译时调用,必须放在文件开头 懒加载:component: resolve => require(['@/view/index.vue'], resolve) 用require这种方式引入的时候,会将你的component ...
分类:其他好文   时间:2021-05-24 10:02:52    阅读次数:0
router-view不生效的原因解释
const routers= [ { path:'/', name:'F', component:FP }, { path:'/secondpage', component:()=>import('../views/secondpage.vue') }, { path:'/thirdpage', c ...
分类:其他好文   时间:2021-05-24 09:30:56    阅读次数:0
Vue使用websocket进行心跳连接
Vue页面template <template> <div> <canvas style="width: 80%!important;height: auto!important;" id="canvas"></canvas> <br/>{{charId}} </div> </template> V ...
分类:Web程序   时间:2021-05-24 09:24:28    阅读次数:0
vue使用 axios添加拦截器,post 请求头部添加token
什么是token? token是一个用户自定义的任意字符串,目前开发中,token都是在服务端生成并且token的值会保存到服务器后台。只有服务器和客户端知道这个字符串,于是,这个token就成了两者之间的秘钥,它可以让服务器确认请求是来自客户端还是恶意的第三方。 为什么使用token? 简单地说, ...
分类:移动开发   时间:2021-05-24 09:16:02    阅读次数:0
29561条   上一页 1 ... 22 23 24 25 26 ... 2957 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!