- EmberJS - Home
- EmberJS - Overview
- EmberJS - Installation
- EmberJS - Core Concepts
- Creating and Running Application
- EmberJS - Object Model
- EmberJS - Router
- EmberJS - Templates
- EmberJS - Components
- EmberJS - Models
- EmberJS - Managing Dependencies
- EmberJS - Application Concerns
- EmberJS - Configuring Ember.js
- EmberJS - Ember Inspector
EmberJS-Customizing a Component's Element
Customizing a Component's Element
You can also customize Ember.js components. This can be done by creating the Ember.Component subclass by including its attributes and class names.
The following table lists down the customizing properties of components −
| S.N. | Customizing Component & Description |
|---|---|
| 1 |
It customizes the HTML tag name as per developer needs. |
| 2 |
It customizes the HTML tag's class name as per developer needs. |
| 3 |
You can bind attributes to the DOM element by using attributeBindings. |
Advertisements