4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 21:26:37 +00:00
AzuraCast/frontend/vue/components/Stations/Webhooks/Form/GoogleAnalyticsV3.vue

30 lines
787 B
Vue
Raw Normal View History

2021-10-07 03:00:53 +00:00
<template>
<b-form-group>
<div class="form-row">
2022-12-29 21:15:05 +00:00
<b-wrapped-form-group
id="form_config_tracking_id"
class="col-md-12"
:field="form.config.tracking_id"
>
<template #label>
{{ $gettext('GA Property Tracking ID') }}
</template>
<template #description>
{{ $gettext('The property ID used to track live listeners.') }}
</template>
</b-wrapped-form-group>
</div>
</b-form-group>
2021-10-07 03:00:53 +00:00
</template>
<script setup>
2021-10-07 03:00:53 +00:00
import BWrappedFormGroup from "~/components/Form/BWrappedFormGroup";
const props = defineProps({
2022-12-30 14:38:34 +00:00
form: {
type: Object,
required: true
}
});
2021-10-07 03:00:53 +00:00
</script>