- 博客(5)
- 收藏
- 关注
原创 vue组件传值
父给子传:父组件:用“:”绑定,是v-bind的缩写<template> <div> <List :deleteTodo="deleteTodo" :checkTodo="checkTodo" /> // 这里是父组件引用子组件List </div></template>子组件:用“props”接收export default { name: 'List', props: ['todos
2021-11-21 01:40:10 691
原创 [Vue warn]: Unknown custom element: <el-collapse-item> - did you register the component correctly?
找了好久错误,组件一直不显示,最后又去组件库看了一遍,发现折叠面板要引入两个组件,我一开始只引入了Collapse。是我生疏了,这次记住了。
2021-11-09 20:22:33 2605 1
原创 作为前端初学者,记录一下写nodejs代码出现的问题
1. 双引号和单引号是不一样的。比如,<script type="text/javascript"></script>script标签里的type属性值就得用双引号,之前用了单引号一直运行不出来里面的代码.但是,if (password == user.password){ res.send("nice!")if (password == user.password){ res.send(’nice!‘)这
2021-10-27 17:53:02 113
原创 使用matlab画奥运五环
脚本命令clcclearclose allr=10;t=0:0.01:2pi;x1=rcos(t);y1=rsin(t);x2=x1+2.5r;y2=y1;x3=x1+5*r;y3=y1;x4=(x1+x2)/2;y4=y1-r;x5=(x2+x3)/2;y5=y4;plot(x1,y1,‘blue’,‘linewidth’,5)hold onplot(x2,y2,‘black’,‘linewidth’,5)hold onplot(x3,y3,‘red’,‘linewidth’,5)hold onplo
2021-10-25 11:09:25 1903
原创 豆瓣首页模仿练习(静态页面,只用了html+css)
首先进行html书写,再写css。先展示成果比较:原网页:模仿成果(截图时间不太一样,原网页更新后和当时模仿的样式有一点内容上的不同):html<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta...
2021-10-16 12:42:28 2335 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人