Contents
- Setting width
- Setting height
- cssClass
Having trouble getting help?
Contact Support
Contact Support
Appearance in Vue AI AssistView component
30 Nov 20249 minutes to read
Setting width
You can use the width property to set the width of the AI AssistView. The default value is 100%
.
<template>
<div id='container' style="height: 350px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' ref="aiassist" width="650px" :prompt-request="onPromptRequest"></ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest = (args) => {
setTimeout(() => {
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(defaultResponse);
}, 1000);
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
<template>
<div id='container' style="height: 350px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' ref="aiassist" width="650px" :prompt-request="onPromptRequest"></ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent
},
data: function () {
return {
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(defaultResponse);
}, 1000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
Setting height
You can use the height property to set the height of the AI AssistView. The default value is 100%
.
<template>
<div id='container' style="width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' ref="aiassist" height="350px" :prompt-request="onPromptRequest"></ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const onPromptRequest = (args) => {
setTimeout(() => {
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(defaultResponse);
}, 1000);
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
<template>
<div id='container' style="width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' ref="aiassist" height="350px" :prompt-request="onPromptRequest"></ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent
},
data: function () {
return {
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(defaultResponse);
}, 1000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
</style>
cssClass
You can customize the appearance of the AI AssistView component by using the cssClass property.
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' ref="aiassist" :css-class="cssClass" :prompt-request="onPromptRequest"></ejs-aiassistview>
</div>
</template>
<script setup>
import { AIAssistViewComponent as EjsAiassistview } from "@syncfusion/ej2-vue-interactive-chat";
import { ref } from "vue";
let aiassist = ref(null);
const cssClass = 'custom-container';
const onPromptRequest = (args) => {
setTimeout(() => {
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
aiassist.value.addPromptResponse(defaultResponse);
}, 1000);
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
.e-aiassistview.custom-container {
border-color: #e0e0e0;
background-color: #f4f4f4;
box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
}
.e-aiassistview.custom-container .e-view-header .e-toolbar,
.e-aiassistview.custom-container .e-view-header .e-toolbar-items {
background: #d5d5d5;
}
.e-aiassistview.custom-container .e-view-content .e-input-group {
border: 3px solid #e0e0e0;
}
</style>
<template>
<div id='container' style="height: 350px; width: 650px; margin: 0 auto;">
<br>
<ejs-aiassistview id='aiAssistView' ref="aiassist" :css-class="cssClass" :prompt-request="onPromptRequest"></ejs-aiassistview>
</div>
</template>
<script>
import { AIAssistViewComponent } from "@syncfusion/ej2-vue-interactive-chat";
export default {
components: {
'ejs-aiassistview': AIAssistViewComponent
},
data: function () {
return {
cssClass: 'custom-container'
}
},
methods: {
onPromptRequest: function (args) {
setTimeout(() => {
let defaultAiassist = this.$refs.aiassist.ej2Instances;
let defaultResponse = 'For real-time prompt processing, connect the AIAssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration.';
defaultAiassist.addPromptResponse(defaultResponse);
}, 1000);
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/material.css";
@import "../node_modules/@syncfusion/ej2-interactive-chat/styles/material.css";
.e-aiassistview.custom-container {
border-color: #e0e0e0;
background-color: #f4f4f4;
box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
}
.e-aiassistview.custom-container .e-view-header .e-toolbar,
.e-aiassistview.custom-container .e-view-header .e-toolbar-items {
background: #d5d5d5;
}
.e-aiassistview.custom-container .e-view-content .e-input-group {
border: 3px solid #e0e0e0;
}
</style>