## **Vue3 js工程**
## 添加插件
**npm方式:**
```
1、安装代码编译器插件
npm install vue-codemirror --save
2、选择安装编程语言插件
npm install @codemirror/commands
npm install @codemirror/lang-cpp
npm install @codemirror/lang-css
npm install @codemirror/lang-html
npm install @codemirror/lang-java
npm install @codemirror/lang-javascript
npm install @codemirror/lang-json
npm install @codemirror/lang-lezer
npm install @codemirror/lang-markdown
npm install @codemirror/lang-php
npm install @codemirror/lang-python
npm install @codemirror/lang-rust
npm install @codemirror/lang-sql
npm install @codemirror/lang-xml
npm install @codemirror/legacy-modes
3、安装编译器主题插件
npm install @codemirror/theme-one-dark
4、业务页面如何使用
<template>
<!-- 代码编译器 -->
<div class="codemirror-tbody">
<codemirror
v-model="fileContent"
:style="{ height: '633px;', fontSize: '16px;'}"
:options="{
// 加载完成后自定定焦
autofocus: true,
// 自动缩进
smartIndent: true,
// 缩进单位
indentUnit: 4,
// 启用table按键
indentWithTab: true,
// table按键缩进空格数
tabSize: 2,
// 是否显示行
lineNumbers: true,
// 第一行的行号
firstLineNumber: 1,
// 在选择时是否显示光标
showCursorWhenSelecting: true,
// 光标高度
cursorHeight: 1,
// 是否只读,不能获取焦点
readOnly: false,
// 当前行背景高亮
styleActionLine: true,
// 自动换行
lineWrapping: true,
// 允许用户将一个编辑器高度的空白区域滚动到编辑器底部的视图
scrollPastEnd: true
}"
:extensions="extensions"
/>
</div>
</template>
<script setup>
import { ref, watch } from 'vue';
import { Codemirror } from "vue-codemirror";
import { css } from "@codemirror/lang-css";
import { html } from "@codemirror/lang-html";
import { javascript } from "@codemirror/lang-javascript";
import { json } from "@codemirror/lang-json";
import { java } from "@codemirror/lang-java";
import { sql } from "@codemirror/lang-sql";
import { xml } from "@codemirror/lang-xml";
import { oneDark } from "@codemirror/theme-one-dark";
// 变量-代码编译器额外配置
const extensions = [java(), oneDark];
// 变量-文件内容
const fileContent = ref();
</script>
<style lang="less" scoped>
/* 代码编译器自适应高度 */
.codemirror-tbody {
min-height: calc(100vh - 320px);
max-height: calc(100vh - 320px);
overflow: auto;
}
</style>
- Jump简介
- 技术架构
- 代码规范
- 规范导读
- JAVA规范
- 数据库表设计规范
- 集成项目
- JDK1.8-pom.xml
- JDK21-pom.xml
- 项目结构
- 业务模块-方法名称规范
- 跨域配置
- License授权配置
- 公共字段自动填充
- 全局异常处理器
- PageOffice配置
- Beetl模板引擎配置
- application.properties
- application-prod.yml
- banner.txt
- logback-spring.xml
- jump-core (核心组件)
- Maven依赖
- 通用枚举
- 公共数据状态 - 枚举
- 公共逻辑删除 - 枚举
- 公共操作编码类型 - 枚举
- 公共tree父节点 - 枚举
- 公共是或否 - 枚举
- 工具Util
- AopTargetUtil
- DownloadUtil
- GenerateNumUtil
- HttpServletUtil
- IpUtil
- JoinPointUtil
- MacUtil
- NetworkUtil
- ParamToUtil
- ResponseUtil
- TimeZoneDateUtil
- UaUtil
- 统一返回
- 结果对象
- 如何使用
- jump-cahche (缓存组件)
- Maven依赖
- Redis配置
- 缓存常量
- 工具Util
- RedisCacheUtil
- jump-idempotent (幕等组件)
- Maven依赖
- Context上下文
- 操作器
- 接口
- 如何实现
- AOP参数
- AOP使用方法
- jump-lock (分布式锁组件)
- Maven依赖
- 枚举
- AOP参数
- AOP使用方法
- 工具Util
- RedissonLockUtil
- Util使用方法
- jump-mybatis (mybatis组件)
- Maven依赖
- 基础Entity
- 枚举
- 查询类型 - 枚举
- 条件查询
- search
- service
- 分页结果集
- Mapper
- MyMapper
- 使用方法
- DDL操作
- DML操作
- 工具Util
- EntityUtil
- PageUtil
- TableUtil
- jump-dynamic-datasource (多数据源组件)
- Maven依赖
- Context上下文
- 操作器
- 接口
- 如何实现
- 工具Util
- DatasourceUtil
- 如何使用
- jump-satoken (satoken组件)
- Maven依赖
- Context上下文
- 操作器
- 接口
- 如何实现
- Satoken配置信息
- SatokenUser信息
- Redis缓存操作
- SatokenRedisCache
- SatokenUserRedisCache
- 放行白名单
- jump-oss (OSS组件)
- Maven依赖
- 工具Util
- OssFileUtil
- OssPlatformUtil
- 如何使用
- jump-xss (XSS组件)
- Maven依赖
- 白名单放行
- jump-email (邮件组件)
- Maven依赖
- Email客户端信息
- Email发送参数
- 工具Util
- jump-websocket (WebSocket组件)
- Maven依赖
- 消息对象
- 工具Util
- 如何使用
- jump-weixin (微信组件)
- Maven依赖
- jump-system (系统管理组件)
- Maven依赖
- AOP
- 系统操作日志AOP
- 系统数据日志AOP
- 系统操作权限AOP
- 字典转文本AOP
- Redis缓存操作
- SystemConfigRedisCache
- 工具Util
- LoginUserUtil
- SystemAreaUtil
- SystemHomeUtil
- SystemMenuUtil
- SystemOrgAdminUtil
- SystemOrgTypeUtil
- SystemRoleUtil
- SystemUserLoginAreaUtil
- SystemUserUtil
- jump-timer(定时器组件)
- Maven依赖
- 枚举
- Api接口
- 工具Util
- ActionClassUtil
- TimerTaskUtil
- 如何使用
- jump-ueditor (富文本组件)
- Maven依赖
- 如何使用
- 配置 ueditor.config.js
- 后端 application.properties
- 前端 vue3
- vue-codemirror (代码编译器)
- npm依赖
- PageOffice整合
- Maven依赖
- License授权配置
- 枚举
- 文件来源 - 枚举
- 预览文件类型 - 枚举
- 文件预览参数
- 下载文件
- 预览文件
- 工具Util