Wscats / Vueno
Vue Conversion Plugin
Stars: ✭ 89
Programming Languages
javascript
184084 projects - #8 most used programming language
Projects that are alternatives of or similar to Vueno
Chrome Vs Code
A web browser integrated in VS Code editor tabs. ☢️ experimental ☢️
Stars: ✭ 351 (+294.38%)
Mutual labels: vscode-extension, plugin
Flowmaker
flowmaker: JS to SVG flowchart generation extension for Vscode in realtime written in typescript and also download the SVG through local node server. Extension:
Stars: ✭ 108 (+21.35%)
Mutual labels: vscode-extension, plugin
Androidanimationexercise
Android 动画各种实现,包括帧动画、补间动画和属性动画的总结分享
Stars: ✭ 1,254 (+1308.99%)
Mutual labels: transform
Syntax Highlighter
Syntax Highlighter extension for Visual Studio Code (VSCode). Based on Tree-sitter.
Stars: ✭ 88 (-1.12%)
Mutual labels: vscode-extension
Css Flexbox Cheatsheet
VS Code extension that lets you open a CSS Flexbox cheatsheet directly in the editor.
Stars: ✭ 87 (-2.25%)
Mutual labels: vscode-extension
Methodtraceman
用于快速找到高耗时方法,定位解决Android App卡顿问题。通过gradle plugin+ASM实现可配置范围的方法插桩来统计所有方法的耗时,并提供友好的界面展示,支持耗时筛选、线程筛选、方法名筛选等。(A Tool for Discovering High Time-consuming Methods for Android App)
Stars: ✭ 1,258 (+1313.48%)
Mutual labels: transform
Pawn.raknet
🛡 Plugin for SA:MP server that allows you to analyze RakNet traffic
Stars: ✭ 89 (+0%)
Mutual labels: plugin
Admob Unity Plugin
👾 An extension for Unity3d to place AdMob banners in your Android games.
Stars: ✭ 86 (-3.37%)
Mutual labels: plugin
Jetpack
Security, performance, marketing, and design tools — Jetpack is made by the WordPress experts to make WP sites safer and faster, and help you grow your traffic.
Stars: ✭ 1,283 (+1341.57%)
Mutual labels: plugin
Vim Shfmt
Vim plugin for shfmt (https://github.com/mvdan/sh)
Stars: ✭ 86 (-3.37%)
Mutual labels: plugin
Audiokitsynthone
AudioKit Synth One: Open-Source iOS Synthesizer App
Stars: ✭ 1,258 (+1313.48%)
Mutual labels: plugin
Uinavigation
A UE4 plugin designed to help easily make UMG menus navigable by mouse, keyboard and gamepad
Stars: ✭ 88 (-1.12%)
Mutual labels: plugin
Gajim Omemo
Gajim plugin for OMEMO Multi-End Message and Object Encryption
Stars: ✭ 84 (-5.62%)
Mutual labels: plugin
Fishreduxtemplateforas
Template code generator plugin of Fish Redux for Android Studio
Stars: ✭ 87 (-2.25%)
Mutual labels: plugin
Tingle
⚡ 2kB vanilla modal plugin, no dependencies and easy-to-use
Stars: ✭ 1,287 (+1346.07%)
Mutual labels: plugin
Vueno
.html
文件处理为.vue
文件
贡献者
Eno Yao |
Aaron Xie |
DK Lan |
![]() Xin |
![]() Lemon |
![]() Jing |
![]() Lin |
---|
使用
在VSC中打开任何.html
后缀文件,修改并保存,将自动转换为.vue
的单文件组件
例如有文件test.html
内容如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
div {
color: red
}
</style>
</head>
<body>
<script>
console.log('Eno Yao')
</script>
<p>Eno Yao</p>
<p>Hello World</p>
<script>
console.log('Hello World')
</script>
</body>
</html>
保存文件后,将在同目录下生成test.html.vue
文件,内容如下
<template>
<div>
<p>Eno Yao</p>
<p>Hello World</p>
</div>
</template>
<script>
export default {};
</script>
<style scoped>
div {
color: red;
}
</style>
例如:我们要仿造美团外卖的网站,你可以打开 https://h5.waimai.meituan.com/login 美团的官网,点击鼠标右键显示网页源代码复制到 VS Code
的 .html
格式文件中,然后保存就可以生成 .vue
后缀的文件了。
Note that the project description data, including the texts, logos, images, and/or trademarks,
for each open source project belongs to its rightful owner.
If you wish to add or remove any projects, please contact us at [email protected].