VUE
weiambt
研究生在读,专注于nlp、知识图谱、算法、云原生、前后端等领域,擅长Java,Python。记录学习历程,分享学习心得,欢迎大家交流讨论。
展开
-
vue项目怎么运行
https://www.cnblogs.com/yadongliang/p/11671393.html原创 2022-03-01 22:11:00 · 25 阅读 · 0 评论 -
【异常处理】Vue报错 Component template should contain exactly one root element. If you are using v-if on mul...
问题描述启动VUE项目后控制台报错:Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-else-if to chain them instead.翻译为:组件模板应该只包含一个根元素查看vue代码,发现template中...原创 2022-03-11 16:50:00 · 84 阅读 · 0 评论 -
【异常处理】Vue报错 Component template should contain exactly one root element.
查看vue代码,发现template中有两个元素,所以报错。翻译为:组件模板应该只包含一个根元素。将h1标签放到div里面即可。原创 2024-03-06 23:36:55 · 1587 阅读 · 0 评论 -
都2024年了还在写JQuery?一篇文章带你快速入门Vue.js
VUE笔记,一篇文章快速入门vue.js。原创 2024-03-11 15:34:42 · 1221 阅读 · 0 评论 -
框架学了不会用?四小时做完一个完整的前后端分离demo(SpringBoot+Vue)
分享一个看到的还不错的小项目,非常适合刚学完框架但是没有太多动手机会的的学生党用来练手。原创 2024-03-11 15:54:45 · 469 阅读 · 1 评论 -
【VUE】this.router.push页面跳转后样式乱了
分析了一下,就是前一个页面的style样式被传递到了下一个页面,导致后面的span标签内的颜色变成了蓝色。使用$router.push跳转后的渲染如下。在前一个页面中的style标签中添加。属性,表示当前是局部样式,如下。正常加载时的样式如下。原创 2023-01-02 14:26:54 · 775 阅读 · 0 评论 -
【跨域异常】get请求能访问,但是post请求报403跨域异常
前端vue项目调用后端SpringBoot接口,后端配置了跨域访问,但是出现了get请求能正常访问,但是post请求报403异常的情况。具体原因:Springboot的版本问题。原创 2023-01-01 23:19:57 · 8456 阅读 · 2 评论 -
【VUE】报错:Component name “Login“ should always be multi-word.
报错Componentname“Login”shouldalwaysbemulti-word.意思是说组件名"Login"应该总是多个单词,其实就是eslint报出我的组件名称命名不规范,应该采用驼峰命名法。解决方法就是在vue.config.js文件中写入lintOnSavefalse,修改完毕后重启项目即可。.........原创 2022-07-26 10:50:51 · 13637 阅读 · 2 评论 -
Vue中的信息提示this.$message方法的使用
this.$message原创 2022-07-25 16:38:02 · 6857 阅读 · 0 评论 -
Vue中slot与slot-scope的理解及使用
https//www.cnblogs.com/sherryweb/p/15437298.html。原创 2022-07-25 14:42:41 · 388 阅读 · 0 评论 -
Vue中的render: h => h(App)
render: h => h(App) 是下面内容的缩写:render: function (createElement) { return createElement(App);}进一步缩写为(ES6 语法):render (createElement) { return createElement(App);}再进一步缩写为:render (h){ return h(App);}按照 ES6 箭头函数的写法,就得到了:render: h =>.原创 2022-05-13 18:54:09 · 516 阅读 · 0 评论 -
vue父组件给子组件传值
父组件使用props给子组件传值,子组件中export加入props: { msg: String }父组件:<template> <div class="home"> <img alt="Vue logo" src="../assets/logo.png"> <HelloWorld msg="我是helloworld的msg变量"/> </div></template><scrip原创 2022-05-13 17:32:50 · 272 阅读 · 0 评论 -
Axios的使用
Axios调用方式 axios.get(url,{p1:v1,p2:v2}).then((result) => { }).catch((err) => { console.log(err) });例如:axios.get("http://localhost:8080/joke").then((result) => { console.l原创 2022-05-12 15:51:05 · 104 阅读 · 0 评论