Skip to content

Instantly share code, notes, and snippets.

@hashrock
Last active December 11, 2018 08:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hashrock/9438a09d9b244b01c2460daf4ec0ea66 to your computer and use it in GitHub Desktop.
Save hashrock/9438a09d9b244b01c2460daf4ec0ea66 to your computer and use it in GitHub Desktop.
Parcel + Vue hinagata
{
"minifySvg": false,
"collapseWhitespace": "conservative",
"minifyCss": {
"safe": true
}
}
<template>
<div></div>
</template>
<script>
export default {
data() {
return {};
}
};
</script>
<html>
<head>
</head>
<body>
<div id="app">
</div>
<script src="./index.js"></script>
</body>
</html>
import Vue from "vue";
import App from "./App";
Vue.config.productionTip = false;
/* eslint-disable no-new */
new Vue({
el: "#app",
render: h => h(App)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment