Move attribute tag to start of tag

This commit is contained in:
zsxeee 2021-09-30 19:22:17 +08:00
parent dcd68213b1
commit 138ddf5608
No known key found for this signature in database
GPG key ID: 895CFFFD8313B3B8
12 changed files with 26 additions and 43 deletions

View file

@ -11,7 +11,7 @@
<option value="sms_premium">{{ $t("octopushTypePremium") }}</option>
<option value="sms_low_cost">{{ $t("octopushTypeLowCost") }}</option>
</select>
<i18n-t keypath="Check octopush prices" tag="div" class="form-text">
<i18n-t tag="div" keypath="Check octopush prices" class="form-text">
<a href="https://octopush.com/tarifs-sms-international/" target="_blank">https://octopush.com/tarifs-sms-international/</a>
</i18n-t>
</div>
@ -24,7 +24,7 @@
<input id="octopush-sender-name" v-model="$parent.notification.octopushSenderName" type="text" minlength="3" maxlength="11" class="form-control">
</div>
<i18n-t keypath="More info on:" tag="p" style="margin-top: 8px;">
<i18n-t tag="p" keypath="More info on:" style="margin-top: 8px;">
<a href="https://octopush.com/api-sms-documentation/envoi-de-sms/" target="_blank">https://octopush.com/api-sms-documentation/envoi-de-sms/</a>
</i18n-t>
</template>
@ -36,5 +36,5 @@ export default {
components: {
HiddenInput,
},
}
};
</script>