当前位置: 首页 > news >正文

免费网站专业建站网站建设 职责

免费网站专业建站,网站建设 职责,嘉兴网站建设技术开发,端口扫描站长工具自定义指令 基本使用 自定义指令: 自己定义的指令, 可以封装一些dom操作, 扩展额外功能全局注册// 1. 全局注册指令 Vue.directive(focus, {// inserted 会在 指令所在的元素, 被插入到页面中时触发inserted (el) {// el 就是指令所绑定的元素// console.log(el)el.focus()} …自定义指令 基本使用 自定义指令: 自己定义的指令, 可以封装一些dom操作, 扩展额外功能全局注册// 1. 全局注册指令 Vue.directive(focus, {// inserted 会在 指令所在的元素, 被插入到页面中时触发inserted (el) {// el 就是指令所绑定的元素// console.log(el)el.focus()} })局部注册script export default { // mounted(){ // this.$refs.inp.focus() // }// 2. 局部注册指令 directives: {// 指令名: 指令的配置项focus: {inserted (el) {el.focus()}} } } /script指令的值 v-指令名“指令值”, 通过等号可以绑定指令的值通过binding.value可以拿到指令的值通过update钩子, 可以监听指令值的变化, 进行dom更新操作 templatedivh1 v-colorcolor1指令的值1测试/h1h1 v-colorcolor2指令的值2测试/h1/div /templatescript export default {data () {return {color1: red,color2: green}},directives: {color: {// 1. inserted 提供的是元素被添加到页面中时的逻辑inserted (el, binding) {// binding.value 就是指令的值el.style.color binding.value},// 2. update 指令的值修改的时候触发, 提供值变化后, dom更新的逻辑update(el, binding){// console.log(binding.value)el.style.color binding.value}}} } /scriptstyle/style封装v-loading指令 核心思路 准备类名loading, 通过伪元素提供遮罩层添加或移除类名, 实现loading蒙层的添加移除利用指令语法, 封装v-loading通用指令 inserted钩子中, binding.value判断指令的值, 设置默认状态 update钩子中, binding.value判断指令的值, 更新类名状态 templatediv classmaindiv classbox v-loadingisLoadingulli v-foritem in list :keyitem.id classnewsdiv classleftdiv classtitle{{ item.title }}/divdiv classinfospan{{ item.source }}/spanspan{{ item.time }}/span/div/divdiv classrightimg :srcitem.img alt/div/li/ul/div/div /templatescript // 安装axios yarn add axios import axios from axios// 接口地址http://hmajax.itheima.net/api/news // 请求方式get export default {data () {return {list: [],isLoading: true}},directives: {loading(el, binding){binding.value ? el.classList.add(loading) : el.classList.remove(loading)},update(el, binding){binding.value ? el.classList.add(loading) : el.classList.remove(loading)}},async created () {// 1. 发送请求获取数据const res await axios.get(http://hmajax.itheima.net/api/news)setTimeout(() {// 2. 更新到 list 中this.list res.data.datathis.isLoading false}, 2000)} } /scriptstyle /* 伪类 - 蒙层效果 */ .loading:before {content: ;position: absolute;left: 0;top: 0;width: 100%;height: 100%;background: #fff url(./loading.gif) no-repeat center; }/* .box2 {width: 400px;height: 400px;border: 2px solid #000;position: relative; } */.box {width: 800px;min-height: 500px;border: 3px solid orange;border-radius: 5px;position: relative; } .news {display: flex;height: 120px;width: 600px;margin: 0 auto;padding: 20px 0;cursor: pointer; } .news .left {flex: 1;display: flex;flex-direction: column;justify-content: space-between;padding-right: 10px; } .news .left .title {font-size: 20px; } .news .left .info {color: #999999; } .news .left .info span {margin-right: 20px; } .news .right {width: 160px;height: 120px; } .news .right img {width: 100%;height: 100%;object-fit: cover; } /style插槽 默认插槽 使用步骤 先在组件内用slot占位使用组件时, 传入具体标签内容插入 插槽中的内容会作为默认值MyDialog.vuetemplatediv classdialogdiv classdialog-headerh3友情提示/h3span classclose✖️/span/divdiv classdialog-content!-- 1. 在需要定制的位置, 使用slot占位 --slot/slot/divdiv classdialog-footerbutton取消/buttonbutton确认/button/div/div /templatescript export default {data () {return {}} } /scriptstyle scoped * {margin: 0;padding: 0; } .dialog {width: 470px;height: 230px;padding: 0 25px;background-color: #ffffff;margin: 40px auto;border-radius: 5px; } .dialog-header {height: 70px;line-height: 70px;font-size: 20px;border-bottom: 1px solid #ccc;position: relative; } .dialog-header .close {position: absolute;right: 0px;top: 0px;cursor: pointer; } .dialog-content {height: 80px;font-size: 18px;padding: 15px 0; } .dialog-footer {display: flex;justify-content: flex-end; } .dialog-footer button {width: 65px;height: 35px;background-color: #ffffff;border: 1px solid #e1e3e9;cursor: pointer;outline: none;margin-left: 10px;border-radius: 3px; } .dialog-footer button:last-child {background-color: #007acc;color: #fff; } /styleApp.vuetemplatediv!-- 2. 在使用组件时, 组件标签填入内容 --MyDialog你确认要删除吗/MyDialogMyDialog你确认要退出吗/MyDialog/div /templatescript import MyDialog from ./components/MyDialog.vue export default {data() {return {}},components: {MyDialog,}, } /scriptstyle body {background-color: #b3b3b3; } /style具名插槽 slot占位, 给name属性起名字来区分template配合v-slot:插槽名分发内容v-slot:插槽名 可以简化为 #插槽名 App.vue templatedivMyDialog!-- 需要通过template标签包裹分发的结构 --template v-slot:headdiv我是大标题/div/templatetemplate v-slot:contentdiv我是内容/div/templatetemplate #footerbutton确认/buttonbutton取消/button/template/MyDialog/div /templatescript import MyDialog from ./components/MyDialog.vue export default {data () {return {}},components: {MyDialog} } /scriptstyle body {background-color: #b3b3b3; } /styleMyDialog.vue templatediv classdialogdiv classdialog-header!-- 一旦插槽起了名字, 就是具名插槽, 就只支持定向分发 --slot namehead/slot/divdiv classdialog-contentslot namecontent/slot/divdiv classdialog-footerslot namefooter/slot/div/div /templatescript export default {data() {return {}}, } /scriptstyle scoped * {margin: 0;padding: 0; } .dialog {width: 470px;height: 230px;padding: 0 25px;background-color: #ffffff;margin: 40px auto;border-radius: 5px; } .dialog-header {height: 70px;line-height: 70px;font-size: 20px;border-bottom: 1px solid #ccc;position: relative; } .dialog-header .close {position: absolute;right: 0px;top: 0px;cursor: pointer; } .dialog-content {height: 80px;font-size: 18px;padding: 15px 0; } .dialog-footer {display: flex;justify-content: flex-end; } .dialog-footer button {width: 65px;height: 35px;background-color: #ffffff;border: 1px solid #e1e3e9;cursor: pointer;outline: none;margin-left: 10px;border-radius: 3px; } .dialog-footer button:last-child {background-color: #007acc;color: #fff; } /style作用域插槽 作用: 可以给插槽上绑定数据, 供将来使用组件时使用使用步骤: 给slot标签, 以添加属性的方式传值所有属性都会被收集到一个对象中template中, 通过#插槽名obj接收 App.vuetemplatedivMyTable :datalist!-- 3. 通过template #插槽名变量名 接收 --template #defaultobjbutton clickdel(obj.row.id)删除/button/template/MyTableMyTable :datalist2template #default{ row }button clickshow(row)查看/button/template/MyTable/div /templatescript import MyTable from ./components/MyTable.vue export default {data () {return {list: [{ id: 1, name: 张小花, age: 18 },{ id: 2, name: 孙大明, age: 19 },{ id: 3, name: 刘德忠, age: 17 },],list2: [{ id: 1, name: 赵小云, age: 18 },{ id: 2, name: 刘蓓蓓, age: 19 },{ id: 3, name: 姜肖泰, age: 17 },]}},components: {MyTable},methods: {del(id){this.list this.list.filter(item item.id ! id)},show(row){// console.log(row)alert(姓名: ${row.name}\n年纪: ${row.age})}} } /scriptMyTable.vuetemplatetable classmy-tabletheadtrth序号/thth姓名/thth年纪/thth操作/th/tr/theadtbodytr v-for(item, index) in data :keyitem.idtd {{index1}} /tdtd {{item.name}} /tdtd {{item.age}} /tdtd!-- 1. 给slot标签, 添加属性的方式传值 --slot :rowitem msgtest/slot!-- 2. 将所有的属性, 添加到一个对象中 --!-- {row: { id: 2, name: 孙大明, age: 19 },msg: test}--/td/tr/tbody/table /templatescript export default {props: {data: Array,}, } /scriptstyle scoped .my-table {width: 450px;text-align: center;border: 1px solid #ccc;font-size: 24px;margin: 30px auto; } .my-table thead {background-color: #1f74ff;color: #fff; } .my-table thead th {font-weight: normal; } .my-table thead tr {line-height: 40px; } .my-table th, .my-table td {border-bottom: 1px solid #ccc;border-right: 1px solid #ccc; } .my-table td:last-child {border-right: none; } .my-table tr:last-child td {border-bottom: none; } .my-table button {width: 65px;height: 35px;font-size: 18px;border: 1px solid #ccc;outline: none;border-radius: 3px;cursor: pointer;background-color: #ffffff;margin-left: 5px; } /style案例 - 商品列表 my-tag 标签组件的封装 1. 创建组件 - 初始化 2. 实现功能2.1 双击显示, 并且自动聚焦v-if v-else dblclick自动聚焦1. $nextTick $refs 获取到dom, 进行focus获取焦点2. 封装v-focus指令2.2 失去焦点, 隐藏输入框blur 操作 isEdit2.3 回显标签内容回显的标签信息是父组件传递过来的v-model实现功能(简化代码) v-model :value 和 input组件内部通过props接收, :value设置给输入框2.4 内容修改, 回车 修改标签信息keyup.enter, 触发事件 $emit(input, e.target.value) ------------------------ my-table 表格组件的封装 1. 数据不能写死, 动态传递表格渲染的数据 props 2. 结构不能写死 - 多处结构自定义 [具名插槽]2.1 表头支持自定义2.2 主体支持自定义App.vuetemplatediv classtable-caseMyTable :datagoodstemplate #headth编号/thth名称/thth图片/thth width100px标签/th/templatetemplate #body{item, index}td {{index1}} /tdtd {{item.name}} /tdtdimg :srcitem.picture //tdtd!-- 标签组件 --MyTag v-modelitem.tag/MyTag/td/template/MyTable/div /templatescript import MyTag from ./components/MyTag.vue import MyTable from ./components/MyTable.vue export default {name: TableCase,components: {MyTag,MyTable},methods: {},data() {return {goods: [{id: 101,picture:https://yanxuan-item.nosdn.127.net/f8c37ffa41ab1eb84bff499e1f6acfc7.jpg,name: 梨皮朱泥三绝清代小品壶经典款紫砂壶,tag: 茶具,},{id: 102,picture:https://yanxuan-item.nosdn.127.net/221317c85274a188174352474b859d7b.jpg,name: 全防水HABU旋钮牛皮户外徒步鞋山宁泰抗菌,tag: 男鞋,},{id: 103,picture:https://yanxuan-item.nosdn.127.net/cd4b840751ef4f7505c85004f0bebcb5.png,name: 毛茸茸小熊出没儿童羊羔绒背心73-90cm,tag: 儿童服饰,},{id: 104,picture:https://yanxuan-item.nosdn.127.net/56eb25a38d7a630e76a608a9360eec6b.jpg,name: 基础百搭儿童套头针织毛衣1-9岁,tag: 儿童服饰,},],}}, } /scriptstyle langless scoped .table-case {width: 1000px;margin: 50px auto;img {width: 100px;height: 100px;object-fit: contain;vertical-align: middle;} } /styleMyTable.vuetemplatetable classmy-tabletheadtrslot namehead/slot/tr/theadtbodytr v-for(item ,index) in data :keyitem.idslot namebody :itemitem :indexindex/slot/tr/tbody/table /templatescript export default {props: {data: {type:Array,required: true},},components: {} } /scriptstyle langless scoped .my-table {width: 100%;border-spacing: 0;img {width: 100px;height: 100px;object-fit: contain;vertical-align: middle;}th {background: #f5f5f5;border-bottom: 2px solid #069;}td {border-bottom: 1px dashed #ccc;}td,th {text-align: center;padding: 10px;transition: all 0.5s;.red {color: red;}}.none {height: 100px;line-height: 100px;color: #999;} } /styleMyTag.vuetemplatediv classmy-taginput v-ifisEditv-focusblurisEdit falserefinpclassinput typetext :valuevaluekeyup.enterhandleEnterplaceholder输入标签div v-elsedblclickhandleClickclasstext{{value}}/div/div /templatescript export default {data () {return {isEdit: false}},props: {value: String},methods: {handleClick(){// 双击后, 切换到显示状态this.isEdit true// // 由于Vue是异步dom更新, 所以要等dom更新完, 再获取焦点// this.$nextTick(() {// // 获取焦点// this.$refs.inp.focus()// })},handleEnter(e){if(e.target.value.trim() ){return alert(标签内容不能为空)}// 子传父, 将回车时, [输入框的内容] 提交给父组件更新// 由于父组件是v-model, 触发事件, 需要触发input事件this.$emit(input, e.target.value)this.isEdit false}} } /scriptstyle langless scoped .my-tag {cursor: pointer;.input {appearance: none;outline: none;border: 1px solid #ccc;width: 100px;height: 40px;box-sizing: border-box;padding: 10px;color: #666;::placeholder {color: #666;}} } /style路由入门 单页面应用程序 单页面应用程序 所有功能在一个html页面上实现优点: 按需更新性能高, 开发效率高, 用户体验好缺点: 学习成本, 首屏加载慢, 不利于SEO应用场景: 系统类/内部/文档类/移动端 网站 路由基本使用 路由的使用步骤 5 2 5个基础步骤 1. 下载 v3.6.5 2. 引入 3. 安装注册 Vue.use(Vue插件) 4. 创建路由对象 5. 注入到new Vue中建立关联2个核心步骤 1. 建组件(views目录)配规则 2. 准备导航链接配置路由出口(匹配的组件展示的位置) App.vuetemplatedivdiv classfooter_wrapa href#/find发现音乐/aa href#/my我的音乐/aa href#/friend朋友/a/divdiv classtop!-- 路由出口 → 匹配的组件所展示的位置 --router-view/router-view/div/div /templatescript export default {}; /scriptstyle body {margin: 0;padding: 0; } .footer_wrap {position: relative;left: 0;top: 0;display: flex;width: 100%;text-align: center;background-color: #333;color: #ccc; } .footer_wrap a {flex: 1;text-decoration: none;padding: 20px 0;line-height: 20px;background-color: #333;color: #ccc;border: 1px solid black; } .footer_wrap a:hover {background-color: #555; } /stylemain.jsimport Vue from vue import App from ./App.vueimport Find from ./views/Find import My from ./views/My import Friend from ./views/Friend import VueRouter from vue-router Vue.use(VueRouter) // VueRouter插件初始化const router new VueRouter({// routes 路由规则们// route 一条路由规则 { path: 路径, component: 组件 }routes: [{ path: /find, component: Find },{ path: /my, component: My },{ path: /friend, component: Friend },] })Vue.config.productionTip falsenew Vue({render: h h(App),router }).$mount(#app) 来源 黑马程序员. Vue2Vue3基础入门到实战项目
http://www.dnsts.com.cn/news/215944.html

相关文章:

  • 快速建站服务器网站建设排行
  • 天津市城乡建设网站服务商平台登录
  • wap卖料建站系统商丘做网站哪家好
  • 大连企业网站模板做网站和做网页有什么区别
  • 做视频网站需要什么证件网站标签化
  • 国内十大网站制作公司怎么通过数据库做网站的登录
  • 现在都有什么网站工作室闸北东莞网站建设
  • 网站如何吸引人照片书哪家网站做的好
  • 蓝山网站建设西安有哪些网站建设公司
  • 网页对于网站有多重要网站后台模板 jquery
  • 温州网站建设首选国鼎网络免费做ppt的网站
  • 如何建设网站效果好网站建设开发ppt模板下载
  • 山东省建设部继续教育网站南京网站建设公司
  • 电子书推送网站怎么做手机网站建设进度
  • 做中国o2o网站领导山西建设投资集团有限公司
  • 大型 网站 建设 公司wordpress post type
  • 企业网站建设及推广研究个人网页生成器
  • 怎样建外贸网站php 网站缩略图
  • 北京智能网站建设哪里好温县住房与城乡建设局网站
  • 商贸营销型网站案例logo设计的六大要素
  • 成都 网站建设公司哪家好购买网站模板
  • 自助公益网站建设搭建网站需要备案吗
  • 免费空间建网站网站建设入的什么科目
  • 网站绑定两个域名怎么做跳转深圳软件定制哪家好
  • 网站建设免费太仓网站开发建设服务
  • 乐清企业网站建设wordpress 菜单 手机端
  • 网站制作高手住房及城乡建设部信息中心网站
  • 网站建设的主要步骤wordpress 杂志模板下载
  • 网站风格设计seo网站编辑优化招聘
  • 建设网站模板免费网站建设 東道网络