<div id="app">
  <article class="album">
    <div class="image-wrap">
      <img src="https://media.pitchfork.com/photos/5afb000a846bf02b4c448b2f/1:1/w_320/Father%20John%20Misty:%20God%E2%80%99s%20Favorite%20Customer.jpg">
    </div>
    <div class="inner-wrap">
      <ul id="details">
        <li v-for="(item, index) in details" :key="index" class="detail">
          <strong>{{ index }}: </strong> {{ item }}
        </li>
      </ul>
    
      <h2>Track listing</h3>
      <ol id="tracks">
        <li v-for="(track, index) in tracks">
          {{ track }}
        </li>
      </ol>
    </div>
  </article>
</div>

body {
  background: black;
  min-height: 100vh;
  width: 100vw;
  overflow: auto;
  color: white;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 3rem;
}

ul {
  list-style: none;
}

ul, ol {
  list-style-position: inside;
  padding-left: 0;
}

article {
  color: white;
  width: calc(30vw + 50px);  
  display: flex;
  line-height: 1.5;
}

.inner-wrap {
  background: #C70039;
  padding: 1.5rem;
}

#details li:first-child {
  font-family: 'Monoton', sans-serif;
  font-size: 2.2rem;
  color:  #c89413;
  line-height: 1.2;
  
  strong {
    display: none;
  }
}

li {
  margin-bottom: 1.3rem;
}

.detail strong {
  display: block;
}

img {
  display: block;
  max-width: 100%;
  width: calc(30vw + 50px);
  height: auto;
}

h2 {
  font-family: 'Monoton', sans-serif;
  font-size: 1.7rem;
  color:  #c89413;
}
View Compiled
class Album {
  constructor(title, artist, released) {
    this.title = title;
    this.artist = artist;
    this.released = released;
  }
  
  list() {
    return undefined;
  }
}

class TrackList extends Album {
  constructor(title, artist, released, tracks) {
    super(title, artist, released);
    this.tracks = tracks; 
  }
  
  details() {
    const theDetails = {
      'Title': this.title,
      'Artist': this.artist,
      'Release date': this.released
    }
    
    return theDetails;
  }
  
  list() {
    this.details();
    let theTrackList = [];
    for (let track of this.tracks) {
      theTrackList.push(track);
    }
    
    return theTrackList;
  }  
}

const album = new Album('God\'s Favourite Customer', 'Father John Misty', 2018);

const tracks = new TrackList(
  album.title,
  album.artist,
  album.released,
  [
    'Hangout at the Gallows',
    'Mr. Tillman',
    'Just Dumb Enough to Try',
    'Date Night',
    'Please Don\'t Die',
    'The Palace',
    'Disappointing Diamonds Are the Rarest of Them All',
    'God\'s Favorite Customer',
    'The Songwriter',
    'We\'re Only People (And There\'s Not Much Anyone Can Do About That)']);

var app = new Vue({
  el: '#app',
  data: {
    details: tracks.details(),
    tracks: tracks.list(),
  }
})

console.log('tracks', tracks.list());
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.min.js