PHP Classes

File: src/App.vue

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WP Vue Kit Plugin   src/App.vue   Download  
File: src/App.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: 588 bytes
 

Contents

Class file image Download
<template> <div id="wp-vue-kit"> <div class="main-content"> <h2 role="wp-vue-kit-notice" data-text="Don't remove me, I am super important for admin notice"></h2> <h3>{{ __('WP Vue Kit', 'wp-vue-kit') }}</h3> <tabs /> <router-view /> </div> </div> </template> <script> import Tabs from './components/tabs/Tabs.vue'; import { menuFix } from './utils/menu-fix'; export default { name: 'App', components: { Tabs }, watch: { $route() { menuFix(); } } }; </script>