Vit Amin
Vit Amin

Reputation: 683

How to set bootstrap-vue text color inside template

I want to use something like that

<span text-variant = 'danger'>text</span>

or

<b-col cols = 12 text-variant = 'danger'> text </b-col>

What is the correct syntax?

Upvotes: 0

Views: 356

Answers (1)

Hiws
Hiws

Reputation: 10334

You can use class="text-danger" in both of your examples.

Upvotes: 1

Related Questions