0👍
In your CSS you have defined #foot (which is an ID).
In your html “foot” is set as class:
<mu-col class="foot">blablablablablablabla</mu-col>
Either “foot” has to be defined as class in CSS or referred to as ID in the
HTML
`<mu-col id="foot">blablablablablablabla</mu-col>`
OR
in css define foot as class, that is ,
.foot {
...
}
- [Vuejs]-Update a data property is not working on button click in vuejs
- [Vuejs]-Switching two times over a specified interval
Source:stackexchange.com