Content
The v-alert component supports simple content using the title and text props. This approach is best for strings that do not need custom styling.
The following code snippet is an example of a basic v-alert component only containing text:
<v-alert text="Lorem ipsum dolor sit amet consectetur adipisicing elit. Commodi, ratione debitis quis est labore voluptatibus..."></v-alert>
Adding a title is as easy as defining its value. The next example adds a string title to accompany the content text:
Notice how the alert does not have a color or icon. This is defined using the type property.