Created
March 25, 2020 07:17
-
-
Save ninanung/c81949c021c7749af22340852431c30a to your computer and use it in GitHub Desktop.
medium sample code
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
<template> | |
<div> | |
Hello World!!! | |
</div> | |
</template> |
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
import Vue from 'vue'; | |
import App from './App.vue'; | |
export function createApp(selector, options) { | |
new Vue({ | |
el: selector, | |
render(h) { | |
return h(App, { props: options }); | |
} | |
}) | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment