Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import { ref } from 'vue';
- export function addHelpArticle( title, message) {
- const helpTitle = ref('');
- const helpMessage = ref('');
- helpTitle.value = title;
- helpMessage.value = message;
- console.log(helpTitle.value + helpMessage.value); //Need to add to mainlayout..
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement