Ngiler SH3LL 360
Home
Information
Create File
Create Folder
:
/
home
/
tbf
/
newweb.tbf.ro
/
resources
/
js
/
views
/
Tbf
/
Information Server
MySQL :
OFF
Perl :
OFF
CURL :
ON
WGET :
OFF
PKEXEC :
OFF
Directive
Local Value
IP Address
89.40.16.97
System
Linux server.atelieruldeit.ro 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64
User
tbf
PHP Version
7.3.33
Software
Apache
Doc root
Writable
close
Edit File :
TermsDigital.vue
| Size :
2.58
KB
Copy
<template> <div class="white-wrapper" v-if="loaded"> <div class="container-section"> <div class="show-post without-left-side"> <div class="header"> <h1>Termeni si Conditii pentru utilizarea TBF Digital</h1> </div> <div class="body"> <div class="right-side" v-html="contentPage"></div> </div> </div> </div> <footer-tbf /> </div> </template> <script> import FooterTbf from '../../components/Tbf/desktop/FooterTbfTwo' export default { data() { return { data_to_display: { meta_title: "Termeni si Conditii pentru utilizarea TBF Digital", meta_description: "", meta_image: "" }, loaded: false, share_link: '', contentPage: '' }; }, components: { FooterTbf, }, async mounted() { window.scrollTo(0, 0); await this.getPageData() }, methods: { async getPageData() { await axios.get('pages/termeni-si-conditii-pentru-utilizarea-tbf-digital').then(({data}) => { this.contentPage = data.data.body }).then(() => { this.loaded = true }) } }, metaInfo() { return { title: this.data_to_display.meta_title, titleTemplate: '%s « TBF', htmlAttrs: { lang: 'ro', amp: null }, meta: [ { name: 'description', content: this.data_to_display.meta_description }, { image: 'name', content: this.data_to_display.meta_title }, { image: 'description', content: this.data_to_display.meta_description }, { itemprop: 'image', content: process.env.MIX_VUE_APP_BASE_URL+"/build/images/share/Share - TBF.png" }, // GOOGLE { name: 'robots', content: 'follow' }, { name: 'author', content: 'TBF.ro' }, { name: 'copyright', content: '' }, // FACEBOOK { property: "og:title", content: this.data_to_display.meta_title }, { property: "og:type", content: 'article' }, { property: "og:description", content: this.data_to_display.meta_description }, { property: "og:url", content: process.env.MIX_VUE_APP_BASE_URL }, { property: "fb:app_id", content: process.env.MIX_FB_ID }, { property:"og:image", content: process.env.MIX_VUE_APP_BASE_URL+"/build/images/share/Share - TBF.png" }, // TWITTER { name: 'twitter:card', content: 'summary' }, { name: 'twitter:description', content: this.data_to_display.meta_description }, { name: 'twitter:title', content: this.data_to_display.meta_title }, { name: 'twitter:site', content: '@TBF' }, { name: 'twitter:creator', content: '@TBF' }, { name: 'twitter:image', content: process.env.MIX_VUE_APP_BASE_URL+"/build/images/share/Share - TBF.png" }, ], } }, } </script>
Back