UNPKG

vue-nutrition-label

Version:

VueJS component to create a 2018 FDA-style nutrition label

17 lines (13 loc) 418 B
// The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue'; import NutritionLabel from './vue-nutrition-label'; import App from './App'; Vue.config.productionTip = false; Vue.use(NutritionLabel); /* eslint-disable no-new */ new Vue({ el: '#app', components: { App }, template: '<App/>' });