egoist
9/16/2016 - 3:14 PM

vue-slides.js

import {Presentation, Slide} from 'vue-slides'

const MyPresentation = {
  name: 'my-presentation',
  render(h) {
    return (
      <Presentation>
        <Slide>
          <Title>hello world</Title>
          <SubTitle>a quick intro to vue-slides</SubTitle>
        </Slide>
      </Presentation>  
    )
  }
}