Skip to content

Instantly share code, notes, and snippets.

@ninanung
Created March 25, 2020 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ninanung/c81949c021c7749af22340852431c30a to your computer and use it in GitHub Desktop.
Save ninanung/c81949c021c7749af22340852431c30a to your computer and use it in GitHub Desktop.
medium sample code
<template>
<div>
Hello World!!!
</div>
</template>
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