Files
vue-js-modal/demo/server_side_rendering/pages/index.vue

20 lines
300 B
Vue

<template>
<div>
<modal name="foo">bar</modal>
<button @click="$modal.show('foo')">
Open modal
</button>
<p>Hi from {{ name }}</p>
</div>
</template>
<script>
export default {
asyncData ({ req }) {
return {
name: req ? 'server' : 'client'
}
}
}
</script>