PHP Classes

File: src/mixins/i18n.js

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

Contents

Class file image Download
export default { /* global __, sprintf */ methods: { __(text, domain) { return __(text, domain); }, sprintf(fmt, ...args) { return sprintf(fmt, ...args); } } };