Last active
February 6, 2019 23:34
-
-
Save vuejsdevelopers/3174fdd88cdaf337dc3dda1069ee58b3 to your computer and use it in GitHub Desktop.
New in Vue: ES Module Browser Build - Snippet 03
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function addTextToBody(text) { | |
const div = document.createElement('div'); | |
div.textContent = text; | |
document.body.appendChild(div); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment