mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-23 17:50:22 +08:00
fix(code-editor): value
not support use as v-model
修复value不支持v-model用法的问题 fixed: #933
This commit is contained in:
parent
61ce25be1b
commit
8832a074dc
@ -29,6 +29,7 @@
|
|||||||
- **Modal** 确保 props 正确被传递
|
- **Modal** 确保 props 正确被传递
|
||||||
- **MultipleTab** 修复可能会意外创建登录路由标签的问题
|
- **MultipleTab** 修复可能会意外创建登录路由标签的问题
|
||||||
- **BasicTree** 修复搜索功能可能导致`checkedKeys`丢失的问题
|
- **BasicTree** 修复搜索功能可能导致`checkedKeys`丢失的问题
|
||||||
|
- **CodeEditor** 修复 value 不支持 v-model 用法的问题
|
||||||
- **其它**
|
- **其它**
|
||||||
- 修复菜单默认折叠的配置不起作用的问题
|
- 修复菜单默认折叠的配置不起作用的问题
|
||||||
- 修复`safari`浏览器报错导致网站打不开
|
- 修复`safari`浏览器报错导致网站打不开
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
name: 'CodeEditor',
|
name: 'CodeEditor',
|
||||||
components: { CodeMirrorEditor },
|
components: { CodeMirrorEditor },
|
||||||
props,
|
props,
|
||||||
emits: ['change'],
|
emits: ['change', 'update:value'],
|
||||||
setup(props, { emit }) {
|
setup(props, { emit }) {
|
||||||
const getValue = computed(() => {
|
const getValue = computed(() => {
|
||||||
const { value, mode } = props;
|
const { value, mode } = props;
|
||||||
@ -42,6 +42,7 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
function handleValueChange(v) {
|
function handleValueChange(v) {
|
||||||
|
emit('update:value', v);
|
||||||
emit('change', v);
|
emit('change', v);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,11 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<PageWrapper title="代码编辑器组件示例" contentFullHeight fixedHeight contentBackground>
|
<PageWrapper title="代码编辑器组件示例" contentFullHeight fixedHeight contentBackground>
|
||||||
<template #extra>
|
<template #extra>
|
||||||
|
<a-space size="middle">
|
||||||
|
<a-button @click="showData" type="primary">获取数据</a-button>
|
||||||
<RadioGroup button-style="solid" v-model:value="modeValue" @change="handleModeChange">
|
<RadioGroup button-style="solid" v-model:value="modeValue" @change="handleModeChange">
|
||||||
<RadioButton value="application/json"> json数据 </RadioButton>
|
<RadioButton value="application/json"> json数据 </RadioButton>
|
||||||
<RadioButton value="htmlmixed"> html代码 </RadioButton>
|
<RadioButton value="htmlmixed"> html代码 </RadioButton>
|
||||||
<RadioButton value="javascript"> javascript代码 </RadioButton>
|
<RadioButton value="javascript"> javascript代码 </RadioButton>
|
||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
|
</a-space>
|
||||||
</template>
|
</template>
|
||||||
<CodeEditor v-model:value="value" :mode="modeValue" />
|
<CodeEditor v-model:value="value" :mode="modeValue" />
|
||||||
</PageWrapper>
|
</PageWrapper>
|
||||||
@ -14,7 +17,7 @@
|
|||||||
import { defineComponent, ref } from 'vue';
|
import { defineComponent, ref } from 'vue';
|
||||||
import { CodeEditor } from '/@/components/CodeEditor';
|
import { CodeEditor } from '/@/components/CodeEditor';
|
||||||
import { PageWrapper } from '/@/components/Page';
|
import { PageWrapper } from '/@/components/Page';
|
||||||
import { Radio } from 'ant-design-vue';
|
import { Radio, Space, Modal } from 'ant-design-vue';
|
||||||
|
|
||||||
const jsonData =
|
const jsonData =
|
||||||
'{"name":"BeJson","url":"http://www.xxx.com","page":88,"isNonProfit":true,"address":{"street":"科技园路.","city":"江苏苏州","country":"中国"},"links":[{"name":"Google","url":"http://www.xxx.com"},{"name":"Baidu","url":"http://www.xxx.com"},{"name":"SoSo","url":"http://www.xxx.com"}]}';
|
'{"name":"BeJson","url":"http://www.xxx.com","page":88,"isNonProfit":true,"address":{"street":"科技园路.","city":"江苏苏州","country":"中国"},"links":[{"name":"Google","url":"http://www.xxx.com"},{"name":"Baidu","url":"http://www.xxx.com"},{"name":"SoSo","url":"http://www.xxx.com"}]}';
|
||||||
@ -51,7 +54,13 @@
|
|||||||
</html>
|
</html>
|
||||||
`;
|
`;
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: { CodeEditor, PageWrapper, RadioButton: Radio.Button, RadioGroup: Radio.Group },
|
components: {
|
||||||
|
CodeEditor,
|
||||||
|
PageWrapper,
|
||||||
|
RadioButton: Radio.Button,
|
||||||
|
RadioGroup: Radio.Group,
|
||||||
|
ASpace: Space,
|
||||||
|
},
|
||||||
setup() {
|
setup() {
|
||||||
const modeValue = ref('application/json');
|
const modeValue = ref('application/json');
|
||||||
const value = ref(jsonData);
|
const value = ref(jsonData);
|
||||||
@ -72,7 +81,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return { value, modeValue, handleModeChange };
|
function showData() {
|
||||||
|
Modal.info({ title: '编辑器当前值', content: value.value });
|
||||||
|
}
|
||||||
|
|
||||||
|
return { value, modeValue, handleModeChange, showData };
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user