16 lines
246 B
Vue
16 lines
246 B
Vue
|
<template>
|
||
|
<v-app>
|
||
|
<v-container>
|
||
|
<v-card v-ripple>
|
||
|
<v-card-text>
|
||
|
<v-text-field></v-text-field>
|
||
|
</v-card-text>
|
||
|
</v-card>
|
||
|
</v-container>
|
||
|
</v-app>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {}
|
||
|
</script>
|