Commit 0cc59191 authored by Joel Collins's avatar Joel Collins
Browse files

Added web component example source

parent 0ff7e670
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ class CustomElementExtension(BaseExtension):
            self,
            "org.openflexure.customelement",
            description="Testing HTML components in an extension",
            static_folder=path_relative_to(__file__, "static"),
            static_folder=path_relative_to(__file__, "static", "dist"),
        )

        # Register the on_microscope function to run when the microscope is attached
+2 −0
Original line number Diff line number Diff line
> 1%
last 2 versions
+1 −0
Original line number Diff line number Diff line
dist/* filter=lfs diff=lfs merge=lfs -text
+23 −0
Original line number Diff line number Diff line
.DS_Store
node_modules

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# Override and include dist
!/dist
 No newline at end of file
+5 −0
Original line number Diff line number Diff line
module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset'
  ]
}
Loading