mirror of
https://github.com/KevinMidboe/vue-js-modal.git
synced 2025-10-29 18:00:20 +00:00
20 lines
300 B
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>
|