Arsala Grey commited on
Commit
13dfb27
·
1 Parent(s): 4e87299

trying to fix hf spaces rendering

Browse files
Files changed (1) hide show
  1. main.js +2 -3
main.js CHANGED
@@ -1,8 +1,6 @@
1
- import { getModelsForTask } from "./hf-utils";
2
-
3
  const { createApp, ref, onMounted } = Vue;
4
 
5
- const useCases = [
6
  {
7
  "name": "Natural Language Processing (NLP)",
8
  "examples": [
@@ -107,6 +105,7 @@ const useCases = [
107
 
108
  const app = createApp({
109
  setup() {
 
110
  return {
111
  useCases,
112
  };
 
 
 
1
  const { createApp, ref, onMounted } = Vue;
2
 
3
+ const UseCases = [
4
  {
5
  "name": "Natural Language Processing (NLP)",
6
  "examples": [
 
105
 
106
  const app = createApp({
107
  setup() {
108
+ const useCases = ref(UseCases);
109
  return {
110
  useCases,
111
  };