随笔分类 - Vue小功能
摘要:# 安装 ```python cnpm install -S vue-core-video-player ``` # 快速使用 ```python # 在main.js中 import VueCoreVideoPlayer from 'vue-core-video-player' Vue.use(V
阅读全文
摘要:# Vue前端 ## 注册页面 点击查看代码 ``` 注册页面 提交 ``` ## 登录 点击查看代码 ``` 登录页面 提交 ``` ## 查看所有图书 点击查看代码 ``` 图书管理 增加图书 修改 删除 ``` ## 新增图书 点击查看代码 ``` 添加图书 确认添加 ``` ## 修改图书
阅读全文
摘要:## 显示小电影 ### 前端Vue ```html 点我加载小电影 电影名字:{{item.name}} 导演:{{item.director}} 电影介绍:{{item.synopsis}} ``` ### 后端flask ```python from flask import Flask, j
阅读全文
摘要:### 1.基本购物车 ```html 购物车 商品id 商品名 商品价格 商品数量 操作 {{good.id}} {{good.name}} {{good.price}} {{good.number}} 选中了:{{checkGroup}} 总价格:{{getPrice()}} 选中了checkb
阅读全文
摘要:# 利用属性指令 + setInterval(是一个实现定时调用的函数) ```html Title 点我切换 ``` # 补充延时任务和定时任务 ```html setTimeout(function(){},3000) # 3s后执行匿名函数 延时任务 var t=setInterval(fun
阅读全文