Skip to content

Instantly share code, notes, and snippets.

@FragsterAt
Created September 24, 2020 07:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FragsterAt/bd5dba77245db1cd4c6896ff78a9b7c6 to your computer and use it in GitHub Desktop.
Save FragsterAt/bd5dba77245db1cd4c6896ff78a9b7c6 to your computer and use it in GitHub Desktop.
<template>
<q-inner-loading
:color="color"
:size="size"
v-bind="$attrs"
v-on="$listeners"
>
<slot></slot>
</q-inner-loading>
</template>
<script>
export default {
props: {
color: {
type: String,
default: 'primary'
},
size: {
type: String,
default: '3em'
}
}
}
</script>
<style>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment