Main public logs
From AWVVO
Jump to navigationJump to search
Combined display of all available logs of AWVVO. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 07:02, 25 January 2025 Admin talk contribs created page Vue - custom component (Created page with "== Vue custom component template == <syntaxhighlight lang="html" copy> <template> <div> <h2>{{ title }}</h2> <form @submit.prevent="handleSubmit"> <slot></slot> <button type="submit">Submit</button> </form> </div> </template> <script setup> const props = defineProps({ title: { type: String, default: 'Form' } }) const emit = defineEmits(['submit']) const handleSubmit = (event) => { emit('submit', event) } </script> </syntaxhigh...")