Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CD(): vue template #9502

Merged
merged 11 commits into from
Jan 13, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .codesandbox/templates/vue/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.DS_Store
dist
dist-ssr
coverage
*.local

# Editor directories and files
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
3 changes: 3 additions & 0 deletions .codesandbox/templates/vue/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
}
15 changes: 15 additions & 0 deletions .codesandbox/templates/vue/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Fabric Vue.js Sandbox

A [`vue`](https://vuejs.org/) app for reproducing `fabric` issues and creating examples.

## Reproducing

Creating a clear, easy to use reproduction is very **IMPORTANT**.
Keep it simple and concise.
Don't add stuff that is out of scope.

Make sure you are reproducing with the correct version of fabric.

Provide a **detailed description** including steps to reproduce in the [`REPRODUCE.md`](./REPRODUCE.md) file.

Navigate to [`src/App.vue`](./src/App.vue) and start editing.
5 changes: 5 additions & 0 deletions .codesandbox/templates/vue/REPRODUCE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Reproducing

## Steps

1.
13 changes: 13 additions & 0 deletions .codesandbox/templates/vue/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading
Loading