mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-05-22 19:44:21 +08:00
26 lines
798 B
Vue
26 lines
798 B
Vue
<script setup>
|
|
//Vue Material Kit 2 components
|
|
import MaterialButton from "@/components/MaterialButton.vue";
|
|
</script>
|
|
<template>
|
|
<section class="py-7 m-3 bg-gray-100">
|
|
<div class="container">
|
|
<div class="row justify-space-between text-center py-2">
|
|
<div class="col-6 mx-auto">
|
|
<div class="btn-group" role="group" aria-label="Basic example">
|
|
<MaterialButton variant="contained" color="success"
|
|
>Left</MaterialButton
|
|
>
|
|
<MaterialButton variant="contained" color="success"
|
|
>Middle</MaterialButton
|
|
>
|
|
<MaterialButton variant="contained" color="success"
|
|
>Right</MaterialButton
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|