+
+
+
@@ -74,9 +88,10 @@
-
+ :width="400"
+ :height="400"
+ title="Form DRP Pengadaan"
+ >
@@ -84,8 +99,6 @@
-
-
-
+
+
@@ -163,13 +182,13 @@
-
diff --git a/vue.config.js b/vue.config.js
index e868574..604746c 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -1,3 +1,12 @@
process.env.VUE_APP_VERSION = require('./package.json').version
-module.exports = {};
+module.exports = {
+ chainWebpack: config => {
+ config
+ .plugin('html')
+ .tap(args => {
+ args[0].title = "Smartproc PLN-GG";
+ return args;
+ })
+ }
+};