stash
This commit is contained in:
parent
235bf249e2
commit
f7c6b9d128
1 changed files with 6 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="template in messageTemplates" :key="template.id">
|
<li v-for="template in messageTemplates" :key="template.id">
|
||||||
{{ template.name }}<br>
|
{{ template.name }}<br>
|
||||||
<p>{{ template.message }}</p>
|
<pre>{{ template.message }}</pre>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3 class="text-center">Message Template Variables</h3>
|
<h3 class="text-center">Message Template Variables</h3>
|
||||||
|
@ -31,5 +31,9 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
pre {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
word-wrap: break-word;
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
Loading…
Reference in a new issue