Home > Enterprise >  How to make a split/half button in Vuetify
How to make a split/half button in Vuetify

Time:11-09

I want to make a button/multiple buttons which will look like that... how does it work - because didnt find anything about that in the vuetify documentation.

It should look like that: https://i.stack.imgur.com/sKJ5v.jpg

CodePudding user response:

You can archiev this with a grid. First you start to build a grid (grid-system or flexbox or normal div with fexed width and wrap this in a inline container ). Inside this grid you can build your Button. On button for up and one for down. You include images. This images you can wrap inside a anchor Tag <a href="up"><img src=""></a> and that was all.

  • Related