Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div id="app">
 <smart-table
    :auto-load="true"
    body-path="results"
    id-col="id.value"
    endpoint="https://api.randomuser.me/?results=20"
    :header="[
      {key: 'name.first', label: 'Name'},
      {key: 'name.last', label: 'Surname'},
      {key: 'gender', label: 'Gender'},
      {key: 'phone+cell', label: 'Contacts'},
      {key: 'picture.thumbnail', label: 'Avatar'},
      {key: 'nat', label: 'Nationality'}
    ]"
    :order-by="['name.first', 'name.last']"
    >
   
   <fontawesome col="gender"></fontawesome>
   <!-- this component is pretty self
        explanatory, it will turn the string
        into the specified icon -->

   <contacts col="phone+cell"></contacts>
   <!-- phone+cell is a derived column,
        this component is just a <div> tag to
        display 2 lines-->
   
   <src2img col="picture.thumbnail"></src2img>
   <!-- this component will read the image
        address inside the nested json
        object and put it into the scr of
        an img tag -->
  
  <nationality col="nat"></nationality>
   <!-- this component will take the country
        iso code from the json, query
        a web service and overwrite itself with
        the full country name! -->
   </smart-table>
</div>
              
            
!

CSS

              
                .smart-table {
  max-width: 600px;
  margin: 20px;
}


              
            
!

JS

              
                Vue.component('fontawesome', {
  template: ' <i class="fa fa-{{value}}" aria-hidden="true"></i>',
  created () {injectFontAwesome()}
})

Vue.component('contacts', {
  template: `
  <div>
    tel. {{value.phone}}<br/>
    cell. {{value.cell}}
  </div>`
})

Vue.component('src2img', {
  template: '<img :src="value"></img>'
})

Vue.component('nationality', {
  template: `<p>{{value}}</p>`,
  ready() {
    this.$http.get('https://restcountries.eu/rest/v1/alpha/' + this.value)
       .then(res => Vue.set(this, 'value', res.data.name))
  }
})

/* eslint-disable no-new */
new Vue({el: '#app'})

function injectFontAwesome() {
  // avoid duplicates
      for (let i = 0; i < document.styleSheets.length; i++) {
        if (document.styleSheets[i].href === href) {
          return
        }
      }
      let head = document.getElementsByTagName('head')[0]
      let link = document.createElement('link')
      link.rel = 'stylesheet'
      link.type = 'text/css'
      let href = 'https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css'
      link.href = href
      head.appendChild(link)
}

              
            
!
999px

Console