This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import PopperTooltip from 'tooltip.js'; | |
| new Vue({ | |
| el: '#app', | |
| mounted() { | |
| document.querySelectorAll('[data-tooltip]').forEach(elem => { | |
| new PopperTooltip(elem, { | |
| placement: elem.dataset.tooltipPlacement || 'top', | |
| title: elem.dataset.tooltip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Created by PhpStorm. | |
| * User: mchraiet | |
| * Date: 16/02/17 | |
| * Time: 2:52 PM | |
| */ | |
| class Person | |
| { |