This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright 2009 Google Inc. All Rights Reserved. | |
/** | |
* Creates the DOM structure for the note and adds it to the document. | |
*/ | |
function makeNoteDom(noteTitle, noteContent, noteContainer) { | |
// Create DOM structure to represent the note. | |
var headerElement = document.createElement('div'); | |
var headerText = document.createTextNode(noteTitle); | |
headerElement.appendChild(headerText); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-container grid-list-lg> | |
<v-layout column> | |
<v-flex class="text-xs-center display-1 my-5">Pricing</v-flex> | |
<v-flex class="text-xs-center display-1 font-weight-black">Plans that scale with your user growth</v-flex> | |
</v-layout> | |
<v-layout row wrap> | |
<v-flex> | |
<v-card> | |
<v-img :src="images.rocket1" height="300px"> |