25 lines
656 B
Vue
25 lines
656 B
Vue
|
|
<template>
|
|
<v-card-text>
|
|
<v-layout row >
|
|
<v-text-field
|
|
placeholder="ketikkan profile..."
|
|
class="pt-0"
|
|
>
|
|
</v-text-field>
|
|
</v-layout>
|
|
<v-layout row>
|
|
<v-flex text-md-center >
|
|
<v-btn depressed small color="error">PROFILE 1</v-btn>
|
|
<v-btn depressed small color="error">PROFILE 2</v-btn>
|
|
<v-btn depressed small color="error">PROFILE 3</v-btn>
|
|
<v-btn depressed small color="error">PROFILE 4</v-btn>
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-card-text>
|
|
</template>
|
|
<script>
|
|
module.exports = {
|
|
}
|
|
</script>
|