We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02c793e commit 22403e4Copy full SHA for 22403e4
1 file changed
Themes/VuetifyCore/VueHeadSectionV2.php
@@ -11,10 +11,13 @@ class VueHeadSectionV2 extends CommonHead {
11
/**
12
* Creates new instance of the class.
13
*/
14
- public function __construct(WebPage $page) {
+ public function __construct(?WebPage $page = null) {
15
parent::__construct($page);
16
- $vueVersion = '2.7.16';
17
- $vuetifyVersion = '2.7.2';
+ define('VUE_VERSION', '2.7.16');
+ define('VUETIFY_VERSION', '2.7.2');
18
+
19
+ $vueVersion = VUE_VERSION;
20
+ $vuetifyVersion = VUETIFY_VERSION;
21
22
if (defined('WF_VERBOSE') && WF_VERBOSE) {
23
$this->addJs("https://unpkg.com/vue@$vueVersion/dist/vue.js", [
0 commit comments