cli-4的脚手架配置 因为组件的引用,经常会遇到import * from '../../../components/common/***.vue‘这样的引入格式,太复杂了,所以可以在vue里面配置路径别名 首先在最外层,和package.json同级目录里面新建一个vue.config.js作为 ...
分类:
其他好文 时间:
2020-06-11 16:28:25
阅读次数:
109
自己用到的,记录一下 1、效果图 2、弹层组件代码 a、js代码 1 // components/dialog/index.js 2 Component({ 3 options: { 4 multipleSlots: true 5 }, 6 properties: { 7 //高度 8 height ...
分类:
微信 时间:
2020-06-11 10:29:37
阅读次数:
82
1 下载ActiveMQ 前往Apache官方网站或者直接引擎搜索 ActiveMQ即可,点击对应的OS版本进行下载操作 http://activemq.apache.org/components/classic/download/ 2 解压缩ActiveMQ安装包至对应目录中 如下图所示:我们使用 ...
分类:
系统相关 时间:
2020-06-10 17:31:23
阅读次数:
99
SV_POSITION xy = screen space coordinate (>1, offseted by 0.5)z = proj.z / proj.w = clip space depthw = view.z = view space depth ...
分类:
其他好文 时间:
2020-06-09 16:50:17
阅读次数:
52
模板渲染 当前 App.vue : <template> <div> 我来自App.vue </div> </template> 页面表现: 组件通信 Vue 的单文件组件通过一个类似HTML文件的.vue文件就能描述清楚一个组件所需的模板、样式、逻辑。 在 components 目录下新建 Say ...
分类:
其他好文 时间:
2020-06-09 14:37:53
阅读次数:
63
Retire deprecated micro app projects. (Repo, Codeship, S3) Improve our code structure, how do we layout/split our components and services? https://ind ...
分类:
其他好文 时间:
2020-06-09 10:06:09
阅读次数:
144
此枚举定义元素程序集的基本配置类型。在IFC2x2中增加的新枚举。 ConstantDescription ACCESSORY_ASSEMBLY Assembled accessories or components. ARCH A curved structure. BEAM_GRID Inter ...
分类:
编程语言 时间:
2020-06-09 09:23:28
阅读次数:
74
这篇文章主要介绍了如何在vue项目中按需加载动态组件。 目录结构 // view下有个page1文件夹,其中包含componensts组件和page1.vue,还有map.js存放page1.vue中动态加载componensts组件的映射关系 -view --page1 components co ...
分类:
其他好文 时间:
2020-06-08 00:18:20
阅读次数:
86
1. 前提&知识点 1./components/Father.vue 是父组件, Son.vue 是子组件 2.父组件像子组件通信 props 2.组件通信 1. 新增一个路由入口 /father(省略) 2. components -> Father.vue 添加一组数据 export defau ...
分类:
其他好文 时间:
2020-06-05 15:25:24
阅读次数:
55
在view下创建components文件夹。 在components下创建文件夹base. base文件夹是用来存放 基础组件的。 比如说页面中很多处都在使用的公共组件 如你需要自定义的按钮 在components下新建index.js 用来导出你自定义的组件 这样在任意页面就可以使用组件了 ind ...
分类:
其他好文 时间:
2020-06-01 23:50:16
阅读次数:
76