admin管理员组文章数量:1122852
bin
线上链接 BIN-EDITOR-NEXT
gitee地址bin-editor-next: ace-editor 的vue3升级版本://gitee/link?target=https%3A%2F%2Funpkg%2Fbin-editor-next%2F
实现效果
安装步骤
npm 安装
推荐使用npm安装,它能更好地和webpack打包工具配合使用。而且可以更好的和 es6配合使用。并且支持按需引入
npm i bin-editor-next -S
# or
yarn add bin-editor-next
引入
在 main.js 中写入以下内容:
import { createApp } from 'vue'
import Editor from 'bin-editor-next';
import App from './App.vue';import * as ace from 'brace'
import 'brace/ext/emmet'
import 'brace/ext/language_tools'
import 'brace/mode/json'
import 'brace/snippets/json'
import 'brace/theme/chrome'const app = createApp(App)
appponent(Editor.name, Editor)
app.mount('#app', true)
使用
parameter.value = JSON.stringify(JSON.parse(row.value), null, 2)
<!-- 修改 --><el-dialog :title="title" v-model="editDialog" width="30%" draggable><b-ace-editor v-model="parameter" height="400"></b-ace-editor><template #footer><span class="dialog-footer"><el-button @click="onCancel" size="default">取 消</el-button><el-button type="primary" @click="onSubmit" size="default">确定</el-button></span></template></el-dialog>
// 编辑器JSON字符串变量
const parameter = ref()// 打开修改角色弹窗
const currentRow = ref()
const onOpenEditRole = (row: any) => {editDialog.value = true;title.value = '设备驱动修改窗口'parameter.value = []parameter.value = toRaw(row.options)currentRow.value = tableData.value.findIndex((item: any) => item === row);
};const onSubmit = async () => {let tablebasic = toRaw(tableData.value)tablebasic[currentRow.value].options = parameter.valueawait postDeviceAddSave(tablebasic)await getTableData() //刷新页面editDialog.value = false;
}
提示报错添加文件 src中添加 type.d.ts :declare module "bin-editor-next";
本文标签: bin
版权声明:本文标题:bin 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/biancheng/1701880214a497325.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论