摘要: 在vue中,直接渲染带有\n的语句,渲染失败,不回换行 解决方法 一、CSS解决 设置white-space: pre-wrap; <div style="white-space: pre-wrap;">{{含有/n的语句}}</div> white-space属性指定元素内的空白怎样处理。 值描述 阅读全文
posted @ 2022-07-19 11:38 童话Bluebells 阅读(4177) 评论(0) 推荐(0) 编辑
摘要: 一、媒体类型 值 描述 all 用于所有设备 aural 已废弃。用于语音和声音合成器 braille 已废弃。 应用于盲文触摸式反馈设备 embossed 已废弃。 用于打印的盲人印刷设备 handheld 已废弃。 用于掌上设备或更小的装置,如PDA和小型电话 print 用于打印机和打印预览 阅读全文
posted @ 2021-09-02 13:56 童话Bluebells 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 内置的组件-transition Props: name - string,用于自动生成 CSS 过渡类名。例如:name: 'fade' 将自动拓展为 .fade-enter,.fade-enter-active 等。默认类名为 "v" appear - boolean,是否在初始渲染时使用过渡。 阅读全文
posted @ 2021-08-19 11:12 童话Bluebells 阅读(349) 评论(0) 推荐(0) 编辑
摘要: this.$message({ type: 'success'/'warning'/'error'/'info', message: '消息提示内容', showClose: true/false, duration: Number, center: true/false, dangerouslyU 阅读全文
posted @ 2021-08-16 10:37 童话Bluebells 阅读(4248) 评论(0) 推荐(0) 编辑
摘要: <!-- 表单区域 --> <el-form :model="addForm" :rules="addFormRules" ref="addFormRef" label-width="70px"> <el-form-item label="用户名" prop="username"> <el-inpu 阅读全文
posted @ 2021-08-12 11:04 童话Bluebells 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1.alert输出 弹出警示框 使用方法 <script>window.alert("弹出警示框");</script> 2.document.write() 直接输出在页面当中 <script>document.write("hello world")</script> 3.innerHTML 写 阅读全文
posted @ 2021-05-29 14:46 童话Bluebells 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 数据表 City Country Population Latitude Longitude Guadalajara Mexico 1500800 20.659699 -103.349609 Toronto Canada 2795060 43.653226 -79.383184 Houston Un 阅读全文
posted @ 2021-03-11 15:51 童话Bluebells 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 数据表 Id Title Director Year Length_minutes 1 Toy Story John Lasseter 1995 81 2 A Bug's Life John Lasseter 1998 95 3 Toy Story 2 John Lasseter 1999 93 4 阅读全文
posted @ 2021-03-11 15:21 童话Bluebells 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 题目描述 针对如下表actor结构创建索引: (注:在 SQLite 中,除了重命名表和在已有的表中添加列,ALTER TABLE 命令不支持其他操作, mysql支持ALTER TABLE创建索引) 1 2 3 4 5 CREATE TABLE actor ( actor_id smallint( 阅读全文
posted @ 2021-03-11 14:45 童话Bluebells 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 题目描述 对于如下表actor,其对应的数据为: actor_idfirst_namelast_namelast_update 1 PENELOPE GUINESS 2006-02-15 12:34:33 2 NICK WAHLBERG 2006-02-15 12:34:33 请你创建一个actor 阅读全文
posted @ 2021-03-11 14:41 童话Bluebells 阅读(127) 评论(0) 推荐(0) 编辑