PHP Classes

File: resources/js/components/_partials/Button.vue

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   Laravel Nova Quick View   resources/js/components/_partials/Button.vue   Download  
File: resources/js/components/_partials/Button.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Nova Quick View
Generate the output for Laravel Nova fields
Author: By
Last change:
Date: 1 year ago
Size: 424 bytes
 

Contents

Class file image Download
<template> <button @click="openDrawer" class="appearance-none cursor-pointer text-70 hover:text-primary mr-3" style="height: 20px"> <i :class="icon" style="font-size: 20px"></i> </button> </template> <script> export default { name: "Button", props: ['icon', 'nova', 'ref'], methods: { openDrawer () { this.nova.$emit(this.ref, true) } } } </script> <style scoped> </style>