<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>召隆企博汇论坛 - VUE专区</title>
    <link>http://bbs.clogcn.com/forum-57-1.html</link>
    <description>Latest 20 threads of VUE专区</description>
    <copyright>Copyright(C) 召隆企博汇论坛</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Thu, 11 Jun 2026 02:23:01 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://bbs.clogcn.com/static/image/common/logo_88_31.gif</url>
      <title>召隆企博汇论坛</title>
      <link>http://bbs.clogcn.com/</link>
    </image>
    <item>
      <title>vue组件化、页面通用、方法通用的说明</title>
      <link>http://bbs.clogcn.com/thread-67-1-1.html</link>
      <description><![CDATA[1、如果能够与电脑的名称和功能类似的，尽量使用相同的组件名称以及调用的参数
2、rwRadio可以修改成RwSelect,代码可以复用电脑端的逻辑代码，界面div重做
3、组件一般有实现某一个功能的，实现某一个列表的，实现某一个DIV样式的
4、common的组件页可能有：一键登录、 ...]]></description>
      <category>VUE专区</category>
      <author>richwisd</author>
      <pubDate>Fri, 10 Feb 2023 02:00:55 +0000</pubDate>
    </item>
    <item>
      <title>组件库的使用</title>
      <link>http://bbs.clogcn.com/thread-63-1-1.html</link>
      <description><![CDATA[1. 下拉选择组件
代码形式：
参数介绍：
type默认：checkbox)表示选择项，select:下拉框
multipleBoolean)是否多选
selectData: （string | Array | Number）默认值
rwLabel：（string）展示的文字字段
rwValue：（string）值显示字段
callback：(Function)回调函数 ...]]></description>
      <category>VUE专区</category>
      <author>richwisd</author>
      <pubDate>Sat, 27 Nov 2021 07:21:07 +0000</pubDate>
    </item>
    <item>
      <title>添加自定页到菜单显示</title>
      <link>http://bbs.clogcn.com/thread-62-1-1.html</link>
      <description><![CDATA[1.在更多按钮上选择菜单管理


2.添加操作]]></description>
      <category>VUE专区</category>
      <author>richwisd</author>
<enclosure url="http://bbs.clogcn.com/data/attachment/forum/202111/27/140016lv8b5u83l5t87k2c.png" length="67294" type="image/jpeg" />      <pubDate>Sat, 27 Nov 2021 06:07:05 +0000</pubDate>
    </item>
    <item>
      <title>在企博汇中如何添加一个自定义页面</title>
      <link>http://bbs.clogcn.com/thread-61-1-1.html</link>
      <description><![CDATA[一、登录dev.richwisd.net
进入功能仓库，添加自定义页面

p,代表文件夹
a/代表文件名]]></description>
      <category>VUE专区</category>
      <author>richwisd</author>
      <pubDate>Fri, 12 Nov 2021 07:06:08 +0000</pubDate>
    </item>
    <item>
      <title>如何开发调试Vue项目</title>
      <link>http://bbs.clogcn.com/thread-60-1-1.html</link>
      <description><![CDATA[以http://bbs.clogcn.com/thread-58-1-1.html
http://bbs.clogcn.com/thread-59-1-1.html为前题，前面必须 已经安装好，并已经迁下代码
，使用自己熟悉的编辑器，我们这儿使用的是submile text,也可以使用vscode
打开我们刚刚迁出代码的目录

第二步，打开一个cmd窗口， ...]]></description>
      <category>VUE专区</category>
      <author>richwisd</author>
      <pubDate>Fri, 12 Nov 2021 06:36:53 +0000</pubDate>
    </item>
    <item>
      <title>sourcetree安装以及配置ssh访问</title>
      <link>http://bbs.clogcn.com/thread-59-1-1.html</link>
      <description><![CDATA[一、下载sourcetree
在百度搜索sourcetree
进入https://www.sourcetreeapp.com/
下载完之后，双击下载的文件，进行安装
注意这儿选择
可以跳过bitbucket选择
默认安装接下来的东西
在preferences的时候，输入自己的姓名和邮箱，这个用于提交git的时候的名称
我们这儿的 ...]]></description>
      <category>VUE专区</category>
      <author>richwisd</author>
      <pubDate>Fri, 12 Nov 2021 06:24:33 +0000</pubDate>
    </item>
    <item>
      <title>VUE开发环境搭建</title>
      <link>http://bbs.clogcn.com/thread-58-1-1.html</link>
      <description><![CDATA[第一步，安装nodejs
1、下载
打开https://nodejs.org/en/这个网站
LTS，代表稳定版
CURRent代表不稳定版，或者是测试版之类的
我们以current的下载来说，进入下载页面，选择windows zip的文件，即不需要安装的，且是64位版的
https://nodejs.org/dist/v17.1.0/node-v17. ...]]></description>
      <category>VUE专区</category>
      <author>richwisd</author>
      <pubDate>Fri, 12 Nov 2021 06:02:00 +0000</pubDate>
    </item>
    <item>
      <title>js异步回调Async/Await与Promise区别</title>
      <link>http://bbs.clogcn.com/thread-49-1-1.html</link>
      <description><![CDATA[Promise，我们了解到promise是ES6为解决异步回调而生，避免出现这种回调地狱，那么为何又需要Async/Await呢？你是不是和我一样对Async/Await感兴趣以及想知道如何使用，下面一起来看看这篇文章：Async/Await替代Promise的6个理由。

什么是Async/Await?


[*]async/awai ...]]></description>
      <category>VUE专区</category>
      <author>myskya</author>
      <pubDate>Thu, 26 Nov 2020 01:35:14 +0000</pubDate>
    </item>
    <item>
      <title>ES5、ES6、ES7、ES8特性</title>
      <link>http://bbs.clogcn.com/thread-48-1-1.html</link>
      <description><![CDATA[1.JavaScript
[*]ECMAScript、DOM（文档对象模型）、BOM（浏览器对象模型）
[*]JavaScript语言的执行环境是“单线程”
2.ES5
[*]strict模式

[*]不允许使用未声明的变量
[*]不允许删除变量或对象、函数
[*]不允许变量重名
[*]不允许使用八进制
[*]不允许使用转义字符
[* ...]]></description>
      <category>VUE专区</category>
      <author>myskya</author>
      <pubDate>Thu, 26 Nov 2020 01:10:06 +0000</pubDate>
    </item>
    <item>
      <title>vue router钩子函数</title>
      <link>http://bbs.clogcn.com/thread-45-1-1.html</link>
      <description><![CDATA[1、全局的钩子beforeEach（to，from，next）
[*]页面加载之前
[*]页面跳转之前权限认证，访问拦截
afterEach（to，from，next）
[*]页面加载之后



2、组建内的导航钩子beforeRouteEnter、beforeRouteUpdate、beforeRouteLeave,直接在路由组件内部进行定义的
beforeRou ...]]></description>
      <category>VUE专区</category>
      <author>至臻</author>
      <pubDate>Fri, 07 Aug 2020 01:05:00 +0000</pubDate>
    </item>
    <item>
      <title>vue axios拦截器总结</title>
      <link>http://bbs.clogcn.com/thread-44-1-1.html</link>
      <description><![CDATA[关于axios的拦截器是一个作用非常大，非常好用的东西。分为请求拦截器和响应拦截器两种。我一般把拦截器写在main.js里。


1. 请求拦截器请求拦截器的作用是在请求发送前进行一些操作，例如在每个请求体里加上token，统一做了处理如果以后要改也非常容易。axios.interce ...]]></description>
      <category>VUE专区</category>
      <author>至臻</author>
      <pubDate>Fri, 07 Aug 2020 01:00:50 +0000</pubDate>
    </item>
    <item>
      <title>如何更改element UI内置样式</title>
      <link>http://bbs.clogcn.com/thread-43-1-1.html</link>
      <description><![CDATA[如何更改element UI内置样式]]></description>
      <category>VUE专区</category>
      <author>饶武健</author>
      <pubDate>Tue, 04 Aug 2020 01:03:16 +0000</pubDate>
    </item>
    <item>
      <title>vue问题</title>
      <link>http://bbs.clogcn.com/thread-38-1-1.html</link>
      <description><![CDATA[vue中  怎样全局监听本地缓存中的某个字段]]></description>
      <category>VUE专区</category>
      <author>至臻</author>
      <pubDate>Tue, 21 Jul 2020 12:49:04 +0000</pubDate>
    </item>
  </channel>
</rss>