JSFiddle - React, Tailwind, and code Playground

by darkylmnx

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.1/css/bulma.css">
<div class="section">
  <page-home></page-home>
  <page-about></page-about>
</div>

Vue

Vue.component('PageHome', {
	template: `
  	<p>Hello je suis la page home</p>
  `
})

Vue.component('PageAbout', {
	template: `
  	<p>oues le S</p>
  `
})

new Vue({
	el: '.section'
})