@abi-software/scaffoldvuer 0.4.0-vue3.5 → 0.4.0-vue3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.eslintrc.js CHANGED
@@ -1,12 +1,5 @@
1
- module.exports = {
2
- extends: [
3
- // add more generic rulesets here, such as:
4
- 'plugin:vue/recommended', // Use this if you are using Vue.js 2.x.,
5
-
6
- ],
7
- rules: {
8
- // override/add rules settings here, such as:
9
- // 'vue/no-unused-vars': 'error'
10
- }
1
+ // .eslintrc
2
+ env: {
3
+ node: true,
4
+ es2022: true, // 👈 add this
11
5
  }
12
-
package/README.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  This project aims to provide high-level 3D physiological models viewing capability.
4
4
 
5
+ Scaffoldvuer is now built with Vue3 frameworks. Vue 2 version of Scaffoldvuer is no longer maintained and the source
6
+ can be found in this [branch](https://github.com/ABI-Software/scaffoldvuer/tree/Vue-2).
7
+
5
8
 
6
9
  ## Scaffoldvuer on NPM
7
10
 
@@ -25,7 +28,7 @@ Install the package in your vue app project with the following command "npm i @a
25
28
  Import the package in your script as followed:
26
29
  ```javascript
27
30
  import { ScaffoldVuer } from '@abi-software/scaffoldvuer';
28
- import '@abi-software/scaffoldvuer/dist/scaffoldvuer.css';
31
+ import '@abi-software/scaffoldvuer/dist/style.css';
29
32
  ```
30
33
  Local registration in vue component:
31
34
  ```javascript
@@ -39,6 +42,7 @@ export default {
39
42
  ```
40
43
 
41
44
 
45
+
42
46
  The codes above register the ScaffoldVuer component in the global scope.
43
47
  You can now use the ScaffoldVuer in your vue template as followed:
44
48
  ```html