mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
19 lines
514 B
Vue
19 lines
514 B
Vue
<template>
|
|
<div class='clearfix'><b class='pull-left'>{{record.type}} {{record.name}} {{record.target | truncate 50}}</b>
|
|
<div style='margin-left:8px' class='pull-left'><metadata :meta="record.meta"></metadata></div></div>
|
|
</template>
|
|
<script>
|
|
import Metadata from './Metadata'
|
|
export default{
|
|
data: function(){return{
|
|
|
|
};},
|
|
props: {
|
|
record:{type: Object, required:true}
|
|
},
|
|
components:{Metadata}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style> |