Skip to content

Instantly share code, notes, and snippets.

@meydjer

meydjer/App.html Secret

Created April 27, 2018 15:29
Show Gist options
  • Save meydjer/817afc7be8330eda3ce45a1be026927c to your computer and use it in GitHub Desktop.
Save meydjer/817afc7be8330eda3ce45a1be026927c to your computer and use it in GitHub Desktop.
template-webpack CSS issue
<div>
<h1>Hello {name}!</h1>
<Foo/>
</div>
<script>
export default {
components: {
Foo: "./Foo.html"
}
};
</script>
<style>
div {
border: 4px solid yellow;
margin: 1em;
}
h1 {
color: purple;
}
</style>
<div>
<p>Bar</p>
</div>
<style>
div {
border: 4px solid red;
margin: 1em;
}
</style>
{
"name": "world"
}
<div>
<p>Foo</p>
<Bar/>
</div>
<script>
export default {
components: {
Bar: "./Bar.html"
}
};
</script>
<style>
div {
border: 4px solid orange;
margin: 1em;
}
</style>
{
"svelte": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment