fantasia-archive/src/components/fields/Field_Break.vue

23 lines
504 B
Vue
Raw Normal View History

2021-02-09 15:21:48 +13:00
<template>
<div>
2021-03-08 11:07:40 +13:00
<h4 class="flex justify-start items-center text-weight-bolder q-mb-xs q-mt-xl">
2021-02-09 15:21:48 +13:00
<q-icon v-if="inputIcon" :name="inputIcon" :size="inputIcon.includes('fas')? '15px': '20px'" class="q-mr-md"/>
{{inputDataBluePrint.name}}
</h4>
</div>
</template>
<script lang="ts">
2021-04-04 09:25:27 +12:00
import { Component } from "vue-property-decorator"
2021-02-09 15:21:48 +13:00
2021-04-04 09:25:27 +12:00
import FieldBase from "src/components/fields/_FieldBase"
2021-02-09 15:21:48 +13:00
@Component({
components: { }
})
2021-04-04 09:25:27 +12:00
export default class Field_Text extends FieldBase {
2021-02-09 15:21:48 +13:00
}
</script>