上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 328 下一页
摘要: 一、importimport在引入文件路径时,引入一个依赖包,不需要相对路径。 如:import app from ‘app’; 但引入一个自己写的 js 文件,需要相对路径。 如:import app from ‘./app.js’; 引入第三方插件,不需要相对路径。 import Vue fro 阅读全文
posted @ 2022-09-20 20:03 emanlee 阅读(4720) 评论(0) 推荐(0) 编辑
摘要: ES6 (ECMAScript 6)中的模块是一个包含 JavaScript 代码的文件,在这个模块中所有的变量都对其他模块是不可见的,除非我们导出它。 ES6的模块系统大致分为导出(export)和导入(import)两个模块。 1、模块导出(export) 可以 导出 所有的最外层 函数 、 类 阅读全文
posted @ 2022-09-20 19:44 emanlee 阅读(3541) 评论(0) 推荐(1) 编辑
摘要: <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" /> 用法 <el-input type="text" auto-complete="off" placeholder="账号"> <svg-ico 阅读全文
posted @ 2022-09-20 09:41 emanlee 阅读(1205) 评论(0) 推荐(1) 编辑
摘要: https://m.runoob.com/js/js-function-definition.html JavaScript 使用关键字 function 定义函数。 函数可以通过声明定义,也可以是一个表达式。 函数声明 在之前的教程中,你已经了解了函数声明的语法 : function functi 阅读全文
posted @ 2022-09-19 22:45 emanlee 阅读(27) 评论(0) 推荐(0) 编辑
摘要: ElementUI是一套基于VUE2.0的桌面端组件库,ElementUI提供了丰富的组件帮助开发人员快速构建功能强大、风格统一的页面。 官网地址:http://element-cn.eleme.io/#/zh-CN 在页面上引入 js 和 css 文件即可开始使用,如下: <!-- 引入Eleme 阅读全文
posted @ 2022-09-19 22:15 emanlee 阅读(339) 评论(0) 推荐(0) 编辑
摘要: Input Attributes 参数说明类型可选值默认值 type 类型 string text,textarea 和其他 原生 input 的 type 值 text value / v-model 绑定值 string / number — — maxlength 原生属性,最大输入长度 nu 阅读全文
posted @ 2022-09-19 22:14 emanlee 阅读(81) 评论(0) 推荐(0) 编辑
摘要: Form Attributes 参数说明类型可选值默认值 model 表单数据对象 object — — rules 表单验证规则 object — — inline 行内表单模式 boolean — false label-position 表单域标签的位置,如果值为 left 或者 right 阅读全文
posted @ 2022-09-19 22:13 emanlee 阅读(68) 评论(0) 推荐(0) 编辑
摘要: javasrcipt 是如何获取Dom 元素是通过:document.querySelector(".input")获取dom元素节点 。Vue 为简化DOM获取方法提出了ref 属性和$refs 对象。 一般的操作流程是:ref 绑定控件,$refs 获取控件。ref 绑定控件:<el-form 阅读全文
posted @ 2022-09-19 22:11 emanlee 阅读(241) 评论(0) 推荐(0) 编辑
摘要: HTML DOM(文档对象模型) IntelliJ IDEA 设置对Vue的支持 Vue 起步 Vue.createApp(HelloVueApp).mount('#hello-vue') Vue 创建项目 vue init webpack ProjectName Vue3 模板语法 {{}} v- 阅读全文
posted @ 2022-09-16 15:10 emanlee 阅读(23) 评论(0) 推荐(0) 编辑
摘要: from https://blog.csdn.net/qq_53016083/article/details/122554241 当网页被加载时,浏览器会创建页面的文档对象模型(Document Object Model)。1.HTML DOM (文档对象模型) 通过 HTML DOM,可访问 Ja 阅读全文
posted @ 2022-09-16 08:45 emanlee 阅读(66) 评论(0) 推荐(0) 编辑
上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 328 下一页