just committing before deletion
This commit is contained in:
parent
5cda3ad037
commit
dc58d20588
13
package-lock.json
generated
13
package-lock.json
generated
@ -8,7 +8,8 @@
|
|||||||
"name": "homepage",
|
"name": "homepage",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vue": "^3.0.4"
|
"vue": "^3.0.4",
|
||||||
|
"wave-ui": "^2.30.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@vue/compiler-sfc": "^3.0.4",
|
"@vue/compiler-sfc": "^3.0.4",
|
||||||
@ -3049,6 +3050,11 @@
|
|||||||
"@vue/shared": "3.2.26"
|
"@vue/shared": "3.2.26"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/wave-ui": {
|
||||||
|
"version": "2.30.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/wave-ui/-/wave-ui-2.30.0.tgz",
|
||||||
|
"integrity": "sha512-FbsFVZuXwE3A05sABh9EGm6GQxrDTMXm4wWS1tzrPDT3J90AlS6wYMSppLNTx2fHVI3aiKUQcTYjByIO/CwpKQ=="
|
||||||
|
},
|
||||||
"node_modules/wcwidth": {
|
"node_modules/wcwidth": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
|
||||||
@ -5473,6 +5479,11 @@
|
|||||||
"@vue/shared": "3.2.26"
|
"@vue/shared": "3.2.26"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"wave-ui": {
|
||||||
|
"version": "2.30.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/wave-ui/-/wave-ui-2.30.0.tgz",
|
||||||
|
"integrity": "sha512-FbsFVZuXwE3A05sABh9EGm6GQxrDTMXm4wWS1tzrPDT3J90AlS6wYMSppLNTx2fHVI3aiKUQcTYjByIO/CwpKQ=="
|
||||||
|
},
|
||||||
"wcwidth": {
|
"wcwidth": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
|
||||||
|
@ -6,10 +6,11 @@
|
|||||||
"build": "vite build"
|
"build": "vite build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vue": "^3.0.4"
|
"vue": "^3.0.4",
|
||||||
|
"wave-ui": "^2.30.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"vite": "^1.0.0-rc.13",
|
"@vue/compiler-sfc": "^3.0.4",
|
||||||
"@vue/compiler-sfc": "^3.0.4"
|
"vite": "^1.0.0-rc.13"
|
||||||
}
|
}
|
||||||
}
|
}
|
17
src/App.vue
17
src/App.vue
@ -1,15 +1,18 @@
|
|||||||
<template>
|
<template>
|
||||||
<img alt="Vue logo" src="./assets/logo.png" />
|
<w-app>
|
||||||
<HelloWorld msg="Welcome to Gourav's Homepage" />
|
<img alt="Vue logo" src="./assets/logo.png" />
|
||||||
|
<HelloWorld msg="Welcome to Gourav's Homepage" />
|
||||||
|
<w-button>My Button</w-button>
|
||||||
|
</w-app>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import HelloWorld from './components/HelloWorld.vue'
|
//import WaveTest from './components/WaveTest.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'App',
|
name: "App",
|
||||||
components: {
|
components: {
|
||||||
HelloWorld
|
WaveTest,
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -4,19 +4,22 @@
|
|||||||
<input type="text" placeholder="Filter Search" v-model="query" />
|
<input type="text" placeholder="Filter Search" v-model="query" />
|
||||||
<button @click="reset">Reset</button>
|
<button @click="reset">Reset</button>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<!--div>
|
||||||
{{ query }}
|
{{ query }}
|
||||||
<search-results :query='query' />
|
<search-results :query='query' />
|
||||||
</div>
|
</div-->
|
||||||
|
<wave-test />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
import SearchResults from './SearchResults.vue';
|
import SearchResults from './SearchResults.vue';
|
||||||
|
import WaveTest from './WaveTest.Vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
SearchResults,
|
SearchResults,
|
||||||
|
WaveTest
|
||||||
},
|
},
|
||||||
|
|
||||||
setup() {
|
setup() {
|
||||||
|
14
src/components/WaveTest.Vue
Normal file
14
src/components/WaveTest.Vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<!--w-app>
|
||||||
|
<!-- All your app content goes here. -->
|
||||||
|
|
||||||
|
<!-- Also try to add a button! -->
|
||||||
|
<!--w-button>My Button</w-button>
|
||||||
|
</w-app-->
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
@ -1,5 +1,11 @@
|
|||||||
import { createApp } from 'vue'
|
import { createApp } from 'vue'
|
||||||
import App from './App.vue'
|
import App from './App.vue'
|
||||||
|
import WaveUI from 'wave-ui'
|
||||||
|
import 'wave-ui/dist/wave-ui.css'
|
||||||
import './index.css'
|
import './index.css'
|
||||||
|
|
||||||
createApp(App).mount('#app')
|
const app = createApp(App)
|
||||||
|
new WaveUI(app, {
|
||||||
|
|
||||||
|
})
|
||||||
|
app.mount('#app')
|
||||||
|
Loading…
Reference in New Issue
Block a user