This section explains how to use the Syncfusion Vue Message component in Vue 3 application.
System requirements for Syncfusion Vue UI components
The easiest way to create a Vue application is to use the Vue CLI
. The Vue CLI versions above 4.5.0
are mandatory for creating applications using Vue 3. Use the following command to uninstall older versions of the Vue CLI.
npm uninstall vue-cli -g
Use the following commands to install the latest version of the Vue CLI.
npm install -g @vue/cli
npm install -g @vue/cli-init
Create a new project using the following command.
vue create quickstart
Initiating a new project prompts you to choose the type of project to be used for the current application. Select the option Default (Vue 3)
from the menu.
The Syncfusion Vue packages are maintained in the npmjs.com
registry. The Message component will be used in this example. To install it, use the following command.
npm install @syncfusion/ej2-vue-notifications --save
Import the needed CSS styles for the Message component along with dependency styles in the <style>
section of the src/App.vue
file as follows.
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-notifications/styles/message/material.css";
</style>
You have completed all the necessary configurations needed for rendering the Syncfusion Vue Message component. Now, add the Message component using the following steps.
<script>
section of the src/App.vue
file. <script>
import { MessageComponent } from "@syncfusion/ej2-vue-notifications";
</script>
src/App.vue
file which are used in this example. import { MessageComponent } from '@syncfusion/ej2-vue-notifications';
// Component registration
export default {
name: "App",
components: {
'ejs-message': MessageComponent
}
}
content
property binding definition. <template>
<ejs-message id="msg" :content="content"></ejs-message>
</template>
Above is the Message component definition, with content
property binding definition.
script
section.export default {
name: 'App',
components: {
'ejs-Message': MessageComponent
},
data() {
return {
content: "Please read the comments carefully"
}
},
};
src/App.vue
file with the following code. <template>
<ejs-message id="msg" :content="content"></ejs-message>
</template>
<script>
import { MessageComponent } from "@syncfusion/ej2-vue-notifications";
export default {
name: "app",
components: {
"ejs-message": MessageComponent
},
data() {
return {
content: "Please read the comments carefully",
};
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-notifications/styles/message/material.css";
</style>
Run the application using the following command.
npm run serve
A web server will be initiated. Open the quick start app in the browser at port localhost:8080
.