摘要:
1.首先定义一个父组件 假设为helloword.vue 2.定义一个子组件 假设为one.vue 在父组件中:把子组件都加载进来三部曲 1.import one from "../components/one"; 2. components: { one, } 3.<one></one> 3. < 阅读全文
2021年9月30日
摘要:
1安装完node之后,npm包含的很多依赖包是部署在国外的,在天朝,大家都知道下载速度是超级慢啊。所以我们要安装cnpm,cnpm是淘宝对npm的镜像服务器,这样依赖的包安装起来就快多了。2.安装命令为:npm install -g cnpm --registry=https://registry. 阅读全文
摘要:
<template> <div id="app"> <el-upload drag action :auto-upload="false" :show-file-list="false" :on-change="changeFile" > <i class="el-icon-upload"></i> 阅读全文
摘要:
<template> <div id="app"> <!-- action:存放的是文件上传到服务器的接口地址 --> <!--组件里 show-file-list 是否显示已上传文件列表 --> <!--组件里 on-success 文件上传成功时的钩子,成功时触发 --> <!-- before 阅读全文