Skip to content

Commit

Permalink
feat(SVG): split line for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
andretchen0 committed Aug 31, 2023
1 parent 8c0aaf6 commit 469273a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/loaders/SVG/component.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ const props = withDefaults(defineProps<SVGProps>(),
type SVGLayer = { geometry: BufferGeometry, material: MeshBasicMaterialParameters, isStroke: boolean };
const { src, skipStrokes, skipFills, fillMaterial, strokeMaterial, fillMeshProps, strokeMeshProps, depth } = toRefs(props);
const { src, skipStrokes, skipFills, fillMaterial, strokeMaterial,
fillMeshProps, strokeMeshProps, depth } = toRefs(props);
const svgRef = shallowRef();
const layers = shallowRef([] as SVGLayer[]);
const paths = shallowRef([] as SVGResultPaths[]);
Expand Down

0 comments on commit 469273a

Please sign in to comment.