Skip to content
Snippets Groups Projects
Tooltip.vue 216 B
Newer Older
  • Learn to ignore specific revisions
  • <template>
      <span  class="tooltip" :data-tooltip="content"><i class="question circle icon"></i></span>
    </template>
    
    <script>
    
    export default {
      props: {
        content: {type: String, required: true},
      }
    }
    </script>