Search
 
SCRIPT & CODE EXAMPLE
 

HTML

nuxt title page

<template>
  <h1>{{ title }}</h1>
</template>

<script>
  export default {
    data() {
      return {
        title: 'Hello World!'
      }
    },
    head() {
      return {
        title: this.title,
        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>
Comment

PREVIOUS NEXT
Code Example
Html :: bootstrap vertical hr 
Html :: cache control html 
Html :: how to add horizontal scroll bar in html 
Html :: html clear input after submit 
Html :: how to automatic get boilerplate code for html in vc code 
Html :: dropdown content left 
Html :: bootstrap buttons Disabled state 
Html :: html scale svgö 
Html :: how to add lazy loading in html 
Html :: rating star in html 
Html :: firefox image/svg+xml not working 
Html :: html input box integer only 
Html :: where we can store image in django project to so that t can work in html file 
Html :: rowspan 
Html :: html arrow symbol 
Html :: image with url html 
Html :: bootstrap starter template 
Html :: html lazy load images 
Html :: html link confirm 
Html :: html min value 
Html :: video html 
Html :: description list html 
Html :: <i class="fa fa-tag"</i fontawesome 
Html :: html5 datalist 
Html :: disable an anchor tag 
Html :: bootstrap country flag dropdown 
Html :: how to pass the current url to beautiful soup html 
Html :: shopify custom html image tag src attribute 
Html :: center text in html 
Html :: name attribute in html 
ADD CONTENT
Topic
Content
Source link
Name
5+4 =