PHP Classes

File: src/components/button/Button.vue

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WP Vue Kit Plugin   src/components/button/Button.vue   Download  
File: src/components/button/Button.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WP Vue Kit Plugin
Vue.js plugin to build WordPress user interfaces
Author: By
Last change:
Date: 1 year ago
Size: 464 bytes
 

Contents

Class file image Download
<template> <button> <slot></slot> <!-- slot button content --> </button> </template> <script> export default { name: 'Button', } </script> <style lang="scss" scoped> button { background: #3869ff; color: #fff; border: 0px solid; padding: 10px 20px; cursor: pointer; transition: all; border-radius: 4px; &:hover{ opacity: 0.9; } } </style>