User contributions for Admin

From AWVVO
A user with 152 edits. Account created on 15 January 2025.
Jump to navigationJump to search
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)

25 January 2025

  • 08:2908:29, 25 January 2025 diff hist +19 m Vuetify - defaults Vuetify defaults
  • 08:2808:28, 25 January 2025 diff hist +366 N Vuetify - defaults Created page with "== Vuetify defaults == <syntaxhighlight lang="javascript" copy> import '@mdi/font/css/materialdesignicons.css' import 'vuetify/styles' import { createVuetify } from 'vuetify' export default createVuetify({ theme: { defaultTheme: 'light', }, defaults: { VBtn: { style: { 'text-transform': 'none' } } } }) </syntaxhighlight>"
  • 07:0207:02, 25 January 2025 diff hist +481 N 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..." current

24 January 2025

23 January 2025

  • 08:1308:13, 23 January 2025 diff hist +103 N Linux find Created page with "== Find file == <syntaxhighlight lang="bash"copy> sudo find ./home -name "test*.sh" </syntaxhighlight>" current

20 January 2025

  • 17:0417:04, 20 January 2025 diff hist +108 N Vuetify Created page with "== Create new vuetify app == <syntaxhighlight lang="bash" copy> npm create vuetify@latest </syntaxhighlight>" current

19 January 2025

18 January 2025

17 January 2025

15 January 2025

(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)