mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
36 lines
782 B
Vue
36 lines
782 B
Vue
<template>
|
|
<AllUpdatesSubscribe
|
|
class="w-100 h-100 absolute inset-0 flex justify-center items-center"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import AllUpdatesSubscribe from '~/components-nuxt/all-updates-subscribe.vue'
|
|
|
|
export default {
|
|
layout: 'embed',
|
|
|
|
components: {
|
|
AllUpdatesSubscribe
|
|
},
|
|
|
|
data: function () {
|
|
return {}
|
|
},
|
|
|
|
head() {
|
|
return {
|
|
title: 'Subscribe',
|
|
// meta: [
|
|
// // hid is used as unique identifier. Do not use `vmid` for it as it will not work
|
|
// {
|
|
// hid: 'description',
|
|
// name: 'description',
|
|
// content: 'My custom description'
|
|
// }
|
|
// ]
|
|
}
|
|
}
|
|
}
|
|
</script>
|