Skip to content

Instantly share code, notes, and snippets.

@andikasputra
Created August 6, 2021 02:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andikasputra/1b01599a5559b4580067f813898be4b6 to your computer and use it in GitHub Desktop.
Save andikasputra/1b01599a5559b4580067f813898be4b6 to your computer and use it in GitHub Desktop.
php server side rendering
// Sidebar.vue
<template>
<div>
<h2>Ini sidebar</h2>
<p>title sidebar : {{ title }}</p>
</div>
</template>
<script>
export default {
props: ['title']
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment