diff --git a/How to/Customize existing toolbar/README.md b/How to/Customize existing toolbar/README.md
index cf9ae0e..408c938 100644
--- a/How to/Customize existing toolbar/README.md
+++ b/How to/Customize existing toolbar/README.md
@@ -1,4 +1,4 @@
-# quickstart
+# customize-toolbar
## Project setup
```
diff --git a/How to/Customize existing toolbar/package.json b/How to/Customize existing toolbar/package.json
index 1be2eb8..97bf3e8 100644
--- a/How to/Customize existing toolbar/package.json
+++ b/How to/Customize existing toolbar/package.json
@@ -1,5 +1,5 @@
{
- "name": "cuatomize-toolbar",
+ "name": "customize-toolbar",
"version": "0.1.0",
"private": true,
"scripts": {
@@ -10,7 +10,12 @@
"dependencies": {
"@syncfusion/ej2-vue-pdfviewer": "*",
"core-js": "^3.8.3",
- "vue": "^2.7.16"
+ "vue": "^3.2.13",
+ "buffer": "^6.0.3",
+ "crypto-browserify": "^3.12.0",
+ "stream-browserify": "^3.0.0",
+ "util": "^0.12.5",
+ "vm-browserify": "^1.1.2"
},
"devDependencies": {
"@babel/core": "^7.12.16",
@@ -19,8 +24,7 @@
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"eslint": "^7.32.0",
- "eslint-plugin-vue": "^8.0.3",
- "vue-template-compiler": "^2.7.16"
+ "eslint-plugin-vue": "^8.0.3"
},
"eslintConfig": {
"root": true,
@@ -39,6 +43,7 @@
"browserslist": [
"> 1%",
"last 2 versions",
- "not dead"
+ "not dead",
+ "not ie 11"
]
}
diff --git a/How to/Customize existing toolbar/src/App.vue b/How to/Customize existing toolbar/src/App.vue
index 51c35e2..1ea6252 100644
--- a/How to/Customize existing toolbar/src/App.vue
+++ b/How to/Customize existing toolbar/src/App.vue
@@ -12,16 +12,18 @@
-
-
-
diff --git a/How to/Customize existing toolbar/src/main.js b/How to/Customize existing toolbar/src/main.js
index 63eb05f..01433bc 100644
--- a/How to/Customize existing toolbar/src/main.js
+++ b/How to/Customize existing toolbar/src/main.js
@@ -1,8 +1,4 @@
-import Vue from 'vue'
+import { createApp } from 'vue'
import App from './App.vue'
-Vue.config.productionTip = false
-
-new Vue({
- render: h => h(App),
-}).$mount('#app')
+createApp(App).mount('#app')
diff --git a/How to/Open and close bookmark/README.md b/How to/Open and close bookmark/README.md
index cf9ae0e..0fcedfa 100644
--- a/How to/Open and close bookmark/README.md
+++ b/How to/Open and close bookmark/README.md
@@ -1,4 +1,4 @@
-# quickstart
+# openclosebookmark
## Project setup
```
diff --git a/How to/Open and close bookmark/package.json b/How to/Open and close bookmark/package.json
index 92f0a07..7eedc3e 100644
--- a/How to/Open and close bookmark/package.json
+++ b/How to/Open and close bookmark/package.json
@@ -1,5 +1,5 @@
{
- "name": "quickstart",
+ "name": "openclosebookmark",
"version": "0.1.0",
"private": true,
"scripts": {
@@ -10,7 +10,12 @@
"dependencies": {
"@syncfusion/ej2-vue-pdfviewer": "*",
"core-js": "^3.8.3",
- "vue": "^2.7.16"
+ "vue": "^3.2.13",
+ "buffer": "^6.0.3",
+ "crypto-browserify": "^3.12.0",
+ "stream-browserify": "^3.0.0",
+ "util": "^0.12.5",
+ "vm-browserify": "^1.1.2"
},
"devDependencies": {
"@babel/core": "^7.12.16",
@@ -19,8 +24,7 @@
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"eslint": "^7.32.0",
- "eslint-plugin-vue": "^8.0.3",
- "vue-template-compiler": "^2.7.16"
+ "eslint-plugin-vue": "^8.0.3"
},
"eslintConfig": {
"root": true,
@@ -39,6 +43,7 @@
"browserslist": [
"> 1%",
"last 2 versions",
- "not dead"
+ "not dead",
+ "not ie 11"
]
}
diff --git a/How to/Open and close bookmark/src/App.vue b/How to/Open and close bookmark/src/App.vue
index 12a8261..2c59f92 100644
--- a/How to/Open and close bookmark/src/App.vue
+++ b/How to/Open and close bookmark/src/App.vue
@@ -12,14 +12,16 @@
-
-
-
diff --git a/How to/Open and close bookmark/src/main.js b/How to/Open and close bookmark/src/main.js
index 63eb05f..01433bc 100644
--- a/How to/Open and close bookmark/src/main.js
+++ b/How to/Open and close bookmark/src/main.js
@@ -1,8 +1,4 @@
-import Vue from 'vue'
+import { createApp } from 'vue'
import App from './App.vue'
-Vue.config.productionTip = false
-
-new Vue({
- render: h => h(App),
-}).$mount('#app')
+createApp(App).mount('#app')