Drupal 8 Site using Vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
480 B

<?php
/**
* @file
* Contains vue_js.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function vue_js_example_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the vue_js module.
case 'help.page.vue_js':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('My Awesome Module') . '</p>';
return $output;
default:
}
}