Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. import Vue from 'vue'
  2. import BotUI from 'botui'
  3.  
  4. const botui = BotUI('my-botui-app', {
  5. vue: Vue // pass the dependency.
  6.  
  7. })
  8.  
  9. ( function() {
  10. new Vue({
  11. el: document.querySelector('#my-botui-app'),
  12. template: 'twentyseventeen',
  13. mounted: function(){
  14. console.log("WP Vue Theme!");
  15. }
  16. });
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement