app/assets/javascripts/modules/tags/index.js

Summary

Maintainability
A
1 hr
Test Coverage
import Vue from 'vue';

import TagsShowPage from './pages/show';

$(() => {
  if (!$('body[data-controller="tags"]').length) {
    return;
  }

  // eslint-disable-next-line no-new
  new Vue({
    el: '.vue-root',

    components: {
      TagsShowPage,
    },
  });
});