Advertisement
PaulCastellano

useHelp.js

Nov 8th, 2022 (edited)
847
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { ref } from 'vue';
  2.  
  3. export function addHelpArticle( title, message) {
  4.     const helpTitle = ref('');
  5.     const helpMessage = ref('');
  6.  
  7.     helpTitle.value = title;
  8.     helpMessage.value = message;
  9.  
  10.     console.log(helpTitle.value + helpMessage.value); //Need to add to mainlayout..
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement