mirror of
https://gitee.com/was666/as-editor-h5.git
synced 2026-01-29 00:02:43 +08:00
24 lines
313 B
Vue
24 lines
313 B
Vue
<template>
|
|
<div class="onlineservice">
|
|
{{ datas.text }}
|
|
|
|
<!-- 删除组件 -->
|
|
<slot name="deles" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'onlineservice',
|
|
props: {
|
|
datas: Object,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.onlineservice {
|
|
position: relative;
|
|
}
|
|
</style>
|