Skip to main content
Module

x/vno/example/version-test-2/App.vue

a build tool for compiling and bundling Vue single-file components
Latest
File
<template> <div id="app"> <img src="https://user-images.githubusercontent.com/63819200/128429048-5927eb19-b151-4855-93e3-2e0755c447a2.png" alt="image" border="0" width="450" height="auto" /> <test msg="you are building: version-test-2 with vno" /> </div></template><script>import test from './components/test.vue';
export default { name: 'app', components: {test},};
</script><style>html { background-color: #203A42;}#app { font-family: Avenir, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #79d0b2; margin-top: 60px;}</style>