Files
FHC-Core/public/js/components/vueDatepicker.js.php
2023-11-02 16:49:38 +01:00

14 lines
270 B
PHP

<?php
$path = "../../../vendor/vuejs/vuedatepicker_js/vue-datepicker.iife.js";
if(file_exists($path))
{
header('Content-Type: application/javascript');
echo file_get_contents($path);
echo "export default VueDatePicker";
}
else
{
header('HTTP/1.0 404 Not Found');
}