您的位置:首页 > 产品设计 > UI/UE

vue 相关技术文章地址和知识点整理

2017-08-10 09:15 344 查看
菜单权限, 根据不同权限显示不同的菜单

操作权限, 比如有些账号没有新增权限, 有些没有修改或者删除权限

数据权限, 比如统计概况, 普通管理员不能看到公司营业概况,但能看到自己所属区域的概况

显示权限, 比如列表, 运营能看到那一列的签约金额,但市场不能看到签约金额这一列

https://segmentfault.com/q/1010000008137883

https://taylorchen709.github.io/vue-admin/#/table 实例

下载地址https://github.com/taylorchen709/vue-admin

https://segmentfault.com/a/1190000009506097

http://www.cnblogs.com/taylorchen/p/6083099.html

vue.js实现单选框、复选框和下拉框

http://blog.csdn.net/u013910340/article/details/71601554?ABstrategy=codes_snippets_optimize_v3

http://www.runoob.com/vue2/vue-loop.html

http://cn.vuejs.org/v2/api/#el

简单理解vue中el、template、replace元素

http://www.jb51.net/article/95878.htm

Vue.js组件库,功能非常强大

https://www.iviewui.com/components/table

iView:一套基于 Vue 的高质量 UI 组件库

https://www.v2ex.com/t/309935

vue 常用ui组件地址大全

http://blog.csdn.net/zgrkaka/article/details/53897202

radio

<template>
<div>
<template v-for="branch in branches">
<label :for="branch">{{ branch }}</label>
<input type="radio" :name="branch" :value="branch" v-model="currentBranch">
</template>
</div>
</template>


<template v-for="branch in branches">
<input type="radio"
:id="branch"
:value="branch"
name="branch"
v-model="activeBranch">
<label :for="branch">{{ branch }}</label>
</template>


组件声明注意事项:

1、组件必须有且只有一个根元素

2、标签名必须全部小写(太坑了)

3、组件要给个key属性,代表唯一

问答:

Vue+mui 怎么做移动开发

vue项目的话,有很多专门的vue的前端ui框架,mui并不是一个很好的选择。你可以选择vux 、iView 、Muse等等

MUI 移动端

vux 移动端

iView偏向PC端

vux组件库:

https://vux.li/#/zh-CN/components

HTML5的数据缓存

http://blog.csdn.net/zhoujn90/article/details/8661778

new System.Collections.ArrayList.ArrayListDebugView(dictionary[current]).Items[0]

vue2.0的Element UI的表格table列时间戳格式化

http://blog.csdn.net/x_lord/article/details/70225481

使用vue.js开发网站使用的,但是用到了element UI组件,其中的日期插件不知道怎么更改格式?

https://segmentfault.com/q/1010000008186962/a-1020000008187049

跨域报错404,405

http://www.th7.cn/web/js/201702/214516.shtml

基于Vue.js的表格分页组件

http://www.cnblogs.com/luozhihao/p/5516065.html

单文件组件下的vue,可以擦出怎样的火花

https://segmentfault.com/a/1190000005168085

路由

http://router.vuejs.org/zh-cn/essentials/dynamic-matching.html

如何使用Vuex+Vue.js构建单页应用

http://www.jb51.net/article/95798.htm

computed相当于属性的一个实时计算,如果实时计算里关联了对象,那么当对象的某个值改变的时候,同事会出发实时计算。

都说vue牛逼了,那一定也有一个单向数据流的实现,就是我们这里用到的vuex。

vuex routes

vue-cli相当于脚手架 给你自动生成模板工程

vue-router是 vue路由插件 支持你单页应用的

vue-loader是webpack下loader插件 可以把.vue文件 输出成组件

vuex项目结构

https://vuex.vuejs.org/zh-cn/structure.html

详解vue-router基本使用

http://www.jb51.net/article/111499.htm
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  vue-网址