Skip to content

Commit

Permalink
Adds bug repro
Browse files Browse the repository at this point in the history
  • Loading branch information
luisatmaniak committed Mar 10, 2018
1 parent 3a9827f commit 142d1d7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 20 deletions.
31 changes: 11 additions & 20 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,26 +1,17 @@
<template>
<div id="app">
<header class="header">
<nav class="inner">
<router-link to="/" exact>
<img class="logo" src="~public/logo-48.png" alt="logo">
</router-link>
<router-link to="/top">Top</router-link>
<router-link to="/new">New</router-link>
<router-link to="/show">Show</router-link>
<router-link to="/ask">Ask</router-link>
<router-link to="/job">Jobs</router-link>
<a class="github" href="https://github.com/vuejs/vue-hackernews-2.0" target="_blank" rel="noopener">
Built with Vue.js
</a>
</nav>
</header>
<transition name="fade" mode="out-in">
<router-view class="view"></router-view>
</transition>
</div>
<div id="app">
<bug/>
</div>
</template>

<script>
export default {
components: {
Bug: () => import("./Bug.vue")
}
};
</script>

<style lang="stylus">
body
font-family -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
Expand Down
8 changes: 8 additions & 0 deletions src/Bug.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<script>
export default {
functional: true,
render(h) {
return h("div", "hi");
}
};
</script>

0 comments on commit 142d1d7

Please sign in to comment.