--- description: The message component is used to display a message to the user --- ## Usage First add the `` component to your `app.vue`. ```js ``` Then, use the `useMessage` composable to add notifications to your app anywhere you want. ```vue ``` ### Type Multiple preset styles with icons and colors. ::ComponentPreview --- props: type: info content: Hello RayineSoft --- :: ### Color Use the `color` prop to change the color of the message. ::ComponentPreview --- props: color: amber content: Hello RayineSoft --- :: ## Config ::ComponentDefaults ::