This section explains how to use Accordion 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
. 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 Vue CLI.
npm install -g @vue/cli
npm install -g @vue/cli-init
Create a new project using the command below.
vue create quickstart
cd quickstart
Initiating a new project prompts us to choose the type of project to be used for the current application. Select the option Default (Vue 3)
from the menu.
All the available Essential JS 2 packages are published in npmjs.com
registry.
Install the Accordion
component by using the below npm command.
npm install @syncfusion/ej2-vue-navigations --save
Import the needed css styles for the Accordion 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-navigations/styles/material.css";
</style>
You have completed all the necessary configurations needed for rendering the Syncfusion Vue component. Now, you are going to add the Accordion component using following steps.
<script>
section of the src/App.vue
file.<script>
import { AccordionComponent, AccordionItemDirective, AccordionItemsDirective } from "@syncfusion/ej2-vue-navigations";
</script>
Directive Name | Tag Name |
---|---|
AccordionComponent |
ejs-accordion |
AccordionItemsDirective |
e-accordionitems |
AccordionItemDirective |
e-accordionitem |
import { AccordionComponent, AccordionItemDirective, AccordionItemsDirective } from "@syncfusion/ej2-vue-navigations";
//Component registeration
export default {
name: "App",
components: {
"ejs-accordion": AccordionComponent,
"e-accordionitems": AccordionItemsDirective,
"e-accordionitem": AccordionItemDirective,
}
}
In the above code snippet, you have registered Accordion and its child directives. AccordionItem Directive is used for defining the accordion item.
<template>
<ejs-accordion>
<e-accordionitems>
<e-accordionitem
expanded="true"
header="ASP.NET"
content="Microsoft ASP.NET is a set of technologies in the Microsoft .NET Framework for building Web applications and XML Web services."
></e-accordionitem>
<e-accordionitem
header="ASP.NET MVC"
content="The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller."
></e-accordionitem>
<e-accordionitem
header="JavaScript"
content="JavaScript (JS) is an interpreted computer programming language.It was originally implemented as part of web browsers so that client-side scripts could interact with the user, control the browser, communicate asynchronously, and alter the document content that was displayed."
></e-accordionitem>
</e-accordionitems>
</ejs-accordion>
</template>
src/App.vue
file with following code.<template>
<ejs-accordion>
<e-accordionitems>
<e-accordionitem
expanded="true"
header="ASP.NET"
content="Microsoft ASP.NET is a set of technologies in the Microsoft .NET Framework for building Web applications and XML Web services."
></e-accordionitem>
<e-accordionitem
header="ASP.NET MVC"
content="The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller."
></e-accordionitem>
<e-accordionitem
header="JavaScript"
content="JavaScript (JS) is an interpreted computer programming language.It was originally implemented as part of web browsers so that client-side scripts could interact with the user, control the browser, communicate asynchronously, and alter the document content that was displayed."
></e-accordionitem>
</e-accordionitems>
</ejs-accordion>
</template>
<script>
import {AccordionComponent, AccordionItemDirective, AccordionItemsDirective} from "@syncfusion/ej2-vue-navigations";
//Component registeration
export default {
name: "App",
components: {
"ejs-accordion": AccordionComponent,
"e-accordionitems": AccordionItemsDirective,
"e-accordionitem": AccordionItemDirective,
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
@import "../node_modules/@syncfusion/ej2-vue-navigations/styles/material.css";
</style>
Run the application using the following command.
npm run serve
Web server will be initiated, Open the quick start app in the browser at port localhost:8080
.
Refer the sample Vue 3 accordion getting started