UI -- Vue2

Vue2 模板

Vue2 UI

  • package.json同级
  • components/slButton/element.vue
<template><div class="d1"><span>测试123</span></div>
</template><script>export default {name:"sl-button",data() {return {};}}
</script>
// 不使用scss
<style scoped>
.d1 span{color:red;
}
</style>
  • components/slButton/index.js
import sl from "./element";
sl.install = function (Vue) {Vue.component(sl.name, sl);
};
export default sl;
  • components/function.js
export const ceshi = ()=>{console.log('123')
}
  • components/index.js
import slButton from "./slButton";
import {ceshi} from  './function'const components = [slButton];const install = function (Vue) {if (install.installed) return;components.map((component) => Vue.component(component.name, component));Vue.prototype.$ceshi = ceshi;
};if (typeof window !== 'undefined' && window.Vue) {install(window.Vue);
}
export default {install,slButton
};export { slButton };

使用

  • main.js
import SL from '../components/index'
// 打包使用需要引入css
Vue.use(SL);<sl-button></sl-button>this.$ceshi()

UI 文档

  • src 同级创建
  • docs 文件夹
npm init -y     
npm i vuepress -D
npm i highlight.js -D
  • docs/package.json
"scripts": {"docs:dev": "vuepress dev docs","docs:build": "vuepress build docs"}
  • docs 下创建 docs , docs/docs目录结构
    • .vuepress
      • components
        • slButton.vue
      • config.js
      • enhanceApp.js
      • index.css
      • mixin.js
    • components
      • sl-button.md
    • get-started
      • README.md
    • guide
      • README.md
    • install
      • README.md
    • README.md

docs

.vuepress

  • components/slButton.vue
<template><div class="demo"><h2>创建组件文档模板</h2><p>组件描述</p><h3>组件功能名字</h3><p>组件功能描述</p><div class="component-wrapper"><div class="component-wrapper-demo">组件展示位置</div><div class="code-content" v-highlight style="height: 0;"><div class="code-content-height"><pre><code class="html">{{codeStr}}</code></pre></div></div><div class="lock-code" @click="showCode(0)" ref="xxx"><span class="icon-down" v-text="isShow[0] === false ? 'down' : 'up'"></span><span class="lock-code-word">{{isShow[0] === false ? '显示代码' : '隐藏代码'}}</span></div></div><h3>attributes</h3><p>组件参数说明后期扩展</p></div>
</template><script>
import mixin from '../mixin'
export default {name: 'demo',mixins: [mixin],data() {return {codeStr: `<sl-button></sl-button>`.replace(/^\s*/gm, '').trim(),}}
}
</script><style></style>
  • config.js
const path = require('path')
module.exports = {base: '/slUI/',title: '❤ Sl UI',description: '一套为开发者学习准备的基于 Vue 2.0 组件库',head: [['link', {rel: 'icon', href: '/img/s.png', type: 'image/png'}] // 可去掉],themeConfig: {repo: true,// 默认是 false, 设置为 true 来启用lastUpdated: 'Sun',// editLinks: true,nav: [{text: '主页', link: '/'},{text: '指南', link: '/guide/'},{text: '交流', link: 'https://gitee.com/sunlei0718'},],sidebarDepth: 2,sidebar: [{title: '入门',collapsable: false,children: ['/guide/','/install/','/get-started/',]},{title: '组件',collapsable: false,children: ['/components/sl-button',]},]},markdown: {lineNumbers: true}
}
  • enhanceApp.js
import './index.css'
import sl from '../../../lib/uu.common'
import  '../../../lib/uu.css' // 引入打包之后的需要css
//代码高亮文件引入
import Vue from 'vue'
import hljs from 'highlight.js'
//样式文件,这里我选的是sublime样式,文件里面还有其他样式可供选择
import 'highlight.js/styles/color-brewer.css'
Vue.directive('highlight',function (el) {let blocks = el.querySelectorAll('pre code');blocks.forEach((block)=>{hljs.highlightBlock(block)})
})
export default ({Vue, // VuePress 正在使用的 Vue 构造函数// options, // 附加到根实例的一些选项// router, // 当前应用的路由实例// siteData // 站点元数据}) => {Vue.use(sl)
// ...做一些其他的应用级别的优化
}
  • index.css
.theme-container.sidebar-open .sidebar {box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);border: 0;
}
.sidebar, .navbar {z-index: 10000;
}.component-wrapper .component-wrapper-demo {padding: 24px 24px 15px 24px;
}.component-wrapper h4 {margin: 55px 0 20px;
}.component-wrapper:hover {box-shadow: 0 0 8px 0 rgba(232, 237, 250, .6), 0 2px 4px 0 rgba(232, 237, 250, .5);
}.component-wrapper:hover >.lock-code .lock-code-word {font-size: 14px;transform: translateX(-40px);opacity: 1;
}.component-wrapper:hover >.lock-code .icon-down {transform: translateX(-40px);
}.component-wrapper {border: 1px solid #ebebeb;border-radius: 3px;transition: .2s;
}.component-wrapper .code-content {background-color: #fafafa;border-top: 1px solid #eaeefb;overflow: hidden;transition: height .2s;}.component-wrapper .code-content .code-content-height .code-user-desc{background: #ffffff;margin: 10px 10px 0 10px;padding: 5px 10px;font-size: 14px;line-height: 26px;border: 1px solid #ebebeb;border-radius: 3px;
}
.component-wrapper .code-content .code-content-height > pre {background: #f1bebe;
}
.component-wrapper .code-content .code-content-height > code {color: #3182bd;
}.component-wrapper .lock-code {border-top: 1px solid #eaeefb;height: 44px;box-sizing: border-box;background-color: #fff;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;text-align: center;margin-top: -1px;color: #d3dce6;cursor: pointer;position: relative;line-height: 44px;color: #d3dce6;text-align: center;}.component-wrapper .lock-code:hover {background-color: #f9fafc;}.component-wrapper .lock-code:hover>.lock-code-word {color: #409eff;
}.component-wrapper .lock-code:hover>.icon-down {fill: #409eff;
}.component-wrapper .lock-code .icon-down {transform: translateX(0px);transition: all .1s;
}.component-wrapper .lock-code .lock-code-word {font-size: 0px;margin-left: 15px;display: inline-block;transition: all .1s;opacity: 0;
}::-webkit-scrollbar {width: 8px;background-color: #f5f5f5;
}::-webkit-scrollbar-thumb {border-radius: 6px;background-color: #ccc;
}::-webkit-scrollbar-track {border-radius: 6px;background-color: #f5f5f5;
}
  • mixin.js
export default {data () {return {//每一个区域的高度codeParent: [],codeHeightArr: [],//每个区域的显示状态isShow: [],}},methods: {//根据子元素的高度 设置代码区域父元素的高度showCode (index) {this.$set(this.isShow, index, !this.isShow[index])this.$nextTick(() => {if (this.isShow[index] === true) {this.codeParent[index].style.height = +this.codeHeightArr[index] + 25 + 'px'} else {this.codeParent[index].style.height = 0}})},//得到所有代码区域的高度getCodesHeight () {const arr = document.getElementsByClassName('code-content-height')this.codeParent = document.getElementsByClassName('code-content')const arrLength = arr.lengthfor (let i = 0; i < arrLength; i++) {this.codeHeightArr.push(arr[i].getBoundingClientRect().height)this.isShow.push(false)}},},mounted () {//异步获取当前组件内部 code区域的高度 以便于给点击的时候使用this.$nextTick(() => {this.getCodesHeight()})},
}

components

  • sl-button.md
# Button 按钮
常用的操作按钮
## 基础用法
基础的按钮用法<ClientOnly> 
<div><sl-button></sl-button>
<slButton></slButton>
</div> 
</ClientOnly>

get-started

  • README.md
---
title: 快速上手
---## 安装请参考 [安装](../install/) 章节## 单个引入## 全局引入

guide

  • README.md
---
title: UI
---# UI👀 介绍- 本 UI 框架是基于 Vue 2 实现的。📌 项目特点- UI🔮 视觉稿- UI🚲 为什么叫   UI- UI

install

  • README.md
    • \ 需去掉
---
title: 安装
---# 安装推荐安装  xxx@版本\```bash
npm install xxx@版本
\```
或
\```bash
yarn add xxx@版本
\```

README.md

---
home: trueactionText: 快速上手 →
actionLink: /guide/
features:
- title: 简易好学details: 基于 VUE2
- title: Vue 驱动details: 享受 Vue 的开发体验,实践最流行的技术。
- title: s-uidetails: s-ui
footer: Sun 2294073848@qq.com
---

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/638517.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

大英第四册课后翻译答案

目录 Unit 1Unit 2Unit 3Unit 4小结&#xff1a; Unit 1 中庸思想&#xff08;Doctrine of the Mean&#xff09;是儒家思想的核心内容。孔子所谓的“中”不是指“折中”&#xff0c;而是指在认识和处理客观事物时的一种“适度”和“恰如其分”的方法。孔子主张不仅要把这种思…

街机模拟游戏逆向工程(HACKROM)教程:[14]68K汇编-标志寄存器

在M68K中&#xff0c;有许多条件分支指令&#xff0c;和jmp指令一样也会修改PC达到程序跳转或分支的目的&#xff0c;不过这些会根据一些情况或状态来选择是否跳转。而在M68K中&#xff0c;有一个特别的寄存器来标记这些情况。 CCR(状态标志寄存器) CCR寄存器是用来保存一些对…

微前端-无界wujie

无界微前端方案基于 webcomponent 容器 iframe 沙箱&#xff0c;能够完善的解决适配成本、样式隔离、运行性能、页面白屏、子应用通信、子应用保活、多应用激活、vite 框架支持、应用共享等用户的核心诉求。 主项目安装无界 vue2项目&#xff1a;npm i wujie-vue2 -S vue3项目…

HttpServletRequest getHeader、getHeaders、getIntHeader、getDateHeader区别

request.getHeader(“name”)&#xff1a; 获取请求头中指定名称的单个值&#xff0c;多个值时通常是返回最先出现的那个值 String contentLength request.getHeader("Content-Length"); request.getHeaders(“name”)&#xff1a; 获取请求头中所有具有指定名称…

77. 组合 - 力扣(LeetCode)

题目描述 给定两个整数 n 和 k&#xff0c;返回范围 [1, n] 中所有可能的 k 个数的组合。 你可以按 任何顺序 返回答案。 输入示例 n 4, k 2输出示例 [[2,4],[3,4],[2,3],[1,2],[1,3],[1,4], ]解题思路 我们使用回溯、深度优先遍历的思想&#xff0c;我们使用一个栈 path…

Kotlin的数据类

引言 我们在做项目中涉及到各种数据类的处理&#xff0c;很多很杂乱。难免一个人的知识点有盲点&#xff0c;所以想着做个整理。 定义 在平时的使用中&#xff0c;我们会用到一些类来保持一些数据或状态&#xff0c;我们习惯上成为bean或者entity&#xff0c;也有的定义为mod…

SpringSecurity+OAuth2.0 搭建认证中心和资源服务中心

目录 1. OAuth2.0 简介 2. 代码搭建 2.1 认证中心&#xff08;8080端口&#xff09; 2.2 资源服务中心&#xff08;8081端口&#xff09; 3. 测试结果 1. OAuth2.0 简介 OAuth 2.0&#xff08;开放授权 2.0&#xff09;是一个开放标准&#xff0c;用于授权第三方应用程序…

【笔记】Helm-3 主题-13 Helm v2迁移到 v3

Helm v2 迁移到 v3 该指南介绍如何将Helm v2迁移到v3.Helm v2需要被安装且在一个或多个集群中管理版本。 Helm 3变化概述 Helm 2 to 3完整的变化列表在FAQ部分。以下是用户在迁移之前应该要注意的一些改变的概述&#xff1a; Helm | Docs 1.移除了Tiller&#xff1a; 1、用…

Leetcode的AC指南 —— 栈与队列:225.用队列实现栈

摘要&#xff1a; **Leetcode的AC指南 —— 栈与队列&#xff1a;225.用队列实现栈 **。题目介绍&#xff1a;请你仅使用两个队列实现一个后入先出&#xff08;LIFO&#xff09;的栈&#xff0c;并支持普通栈的全部四种操作&#xff08;push、top、pop 和 empty&#xff09;。 …

简单了解AJAX

文章目录 1、什么是AJAX2、AJAX快速入门3、Axios异步框架3.1、Axios 快速入门3.2、Axios 请求方式别名 1、什么是AJAX 概念&#xff1a;AJAX(Asynchronous JavaScript And XML)&#xff1a;异步的 JavaScript 和 XML AJAX作用&#xff1a; 与服务器进行数据交换&#xff1a;通…

图卷积GCN实战基于网络结构图的网络表示学习实战

下面的是数据&#xff1a; from,to,cost 73,5,352.6 5,154,347.2 154,263,392.9 263,56,440.8 56,96,374.6 96,42,378.1 42,58,364.6 58,95,476.8 95,72,480.1 72,271,419.5 271,68,251.1 134,107,344.0 107,130,862.1 130,129,482.5 227,167,1425.7 167,298,415.7 298,209,42…

GPT属于AI,是LLM的一种实现

GPT&#xff08;Generative Pre-trained Transformer&#xff09;作为一种创新的语言模型&#xff0c;既属于人工智能&#xff08;AI&#xff09;的一部分&#xff0c;也是大规模语言模型&#xff08;LLM&#xff09;的一种实现。本文将探讨GPT在AI和LLM领域的重要性和影响。 …

kafka入门(十):副本数据同步

副本 副本&#xff08;Replica&#xff09;&#xff0c;指的是分布式系统对数据和服务提供的一种冗余方式。 Kafka通过多副本机制实现故障自动转移&#xff0c;在Kafka集群中某个broker节点失效的情况下仍然保证服务可用。 失效副本 在ISR集合之外&#xff0c;也就是处于同…

js监听返回当前页面的方法

要监听用户返回当前页面的操作&#xff0c;可以使用JavaScript中的window.onpopstate事件。这个事件会在浏览器的历史记录发生变化时被触发&#xff0c;其中包括用户点击了浏览器的后退按钮或者通过编程方式调用了history.back()方法。 以下是一个简单的示例代码&#xff0c;演…

PG DBA培训25:PostgreSQL性能分析与优化调整

本课程由风哥发布的基于PostgreSQL数据库的系列课程&#xff0c;本课程属于PostgreSQL Performance analysis and adjustment&#xff0c;学完本课程可以掌握PostgreSQL优化概述与优化方案&#xff0c;PostgreSQL操作系统层优化调整与建议&#xff0c;PostgreSQL存储系统层优化…

Unity3D学习之Unity基础——3D数学

文章目录 1. 前言2 Mathf和Math基础2.1 一般用于只计算一次的函数2.1.1 PI Π PI2.1.2 取绝对值 Abs2.1.3 向上取整 CeilToInt2.1.4 向下取整 FloorToInt2.1.5 钳制函数 Clamp2.1.6 获取最大值 Max2.1.7 获取最小值 Min2.1.8 一个数的n次幂 Pow2.1.9 四舍五入 RoundToInt2.1.10…

腾讯云建站教程,三种方式,随意选

腾讯云怎么建站&#xff1f;使用腾讯云搭建网站有三种方式&#xff0c;可以直接购买腾讯云建站服务如网站建设和CloudPages&#xff0c;也可以购买腾讯云服务器&#xff0c;然后使用开源程序搭建网站。腾讯云百科txybk.com分享腾讯云建站教程&#xff1a; 1、网站建设&#xf…

Spring Boot实现统一异常处理的技术解析

引言 在软件开发过程中&#xff0c;异常处理是非常重要的一环。一个好的异常处理机制可以帮助我们更好地定位问题&#xff0c;提高代码的可维护性和稳定性。Spring Boot作为一款轻量级的Java开发框架&#xff0c;提供了一种简单而高效的方式来实现统一异常处理。本文将详细介绍…

springboot 3 + mysql8 + flyway 数据库版本管理

1、flyway flyway官方文档地址&#xff1a;https://documentation.red-gate.com/fd 对于不怎么看文档的我来说&#xff1a; 1&#xff09;flyway是个管理数据库版本的工具&#xff0c;可以对不同环境的sql进行迁移操作。 2&#xff09;优点&#xff1a;初始化、后期数据的管理…

java使用jsch处理软链接判断是否文件夹

前言 这一次主要是碰到一个问题。因为使用jsch去读取文件的时候&#xff0c;有一些文件它是使用软链接制作的一个映射。因为这里面有一个问题。如果它是软链接你就无法判断他到底是文件。还是文件夹&#xff1f;因为他没有提供可以直接读取的方法&#xff0c;用权限信息去判断…