We now know how to write custom elements and attributes. It is pretty easy to create reusable components and reference them from any view by simply using the “require” tag in your HTML. We are going to learn how to reference our own components globally and remove the need for the “require” tag. Upon completing this chapter, you should have a firm understanding of how to define features in your code. You will be able to register your feature as well as gain access to all of your components from your HTML without using the “require” tag.
What Are Features ?
We use ...