I am encountering an issue with the Vue 2 + UIKit autocomplete feature.
The template for the UIKit autocomplete is shown in the following code:
<script type="text/autocomplete" v-pre>
<ul class="uk-nav uk-nav-autocomplete uk-autocomplete-results">
{{~items}}
<li data-value="{{ $item.name }}">
<a>{{ $item.name }}[{{$item.id}}]</a>
</li>
{{/items}}
</ul>
</script>
However, it appears that Vue 2 is removing any tags inside the script
tag. This is causing a problem for me.
Any suggestions on how to address this issue?